-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
33 lines (29 loc) · 1.04 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "rust_bundler_cp"
version = "0.3.19"
authors = ["Zhenbo Li <[email protected]>"]
description = "Creates a single-source-file version of a Cargo package. This single file can be submitted for competitive programming then. Concentrating on codeforces.com now."
documentation = "https://github.com/Endle/rust-bundler-cp/blob/codeforce/README.mdr"
homepage = "https://github.com/Endle/rust-bundler-cp"
repository = "https://github.com/Endle/rust-bundler-cp"
keywords = ["single-file", "bundle", "merge", "expand", "cli"]
categories = ["command-line-utilities"]
readme = "README.md"
license = "MIT"
edition = "2021"
[[bin]]
name = "rust_bundler_cp"
path = "src/main.rs"
[dependencies]
cargo_metadata = "0.18.1"
syn = { version = "1.0.97", features = ["full", "parsing", "printing", "visit-mut"] }
rustfmt-nightly = { version = "1.4.21", optional = true }
simple-string-builder = "0.2.0"
env_logger = "0.9.0"
log = "0.4.0"
clap = "2.33"
[dev-dependencies]
goldenfile = "1.3.0"
assert_cli = "0.6.3"
[features]
inner_rustfmt = ["rustfmt-nightly"]