Skip to content

Commit

Permalink
control number of dependencies to reduce compile time and binary size
Browse files Browse the repository at this point in the history
  • Loading branch information
macalimlim committed Mar 27, 2021
1 parent 8a1636c commit af93c49
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Expand Up @@ -13,16 +13,16 @@ categories = ["command-line-utilities", "game-development"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.39"
anyhow = { version = "1.0.39", default-features = false }
cargo-edit = "0.7.0"
cargo-generate = "0.6.0"
clap = "3.0.0-beta.2"
clap = { version = "3.0.0-beta.2", default-features = false, features = [ "cargo", "std" ] }
fs_extra = "1.2.0"
kstring = "1.0.1"
liquid = "0.22.0"
liquid-core = "0.22.0"
regex = "1.4.5"
rust-ini = "0.16.1"
liquid = { version = "0.22.0", default-features = false, features = [ "stdlib" ] }
liquid-core = { version = "0.22.0", default-features = false }
regex = { version = "1.4.5", default-features = false }
rust-ini = { version = "0.16.1", default-features = false }
strum = "0.20"
strum_macros = "0.20"
thiserror = "1.0.24"
Expand All @@ -33,5 +33,5 @@ walkdir = "2.3.2"
assert_cmd = "1.0.3"
cargo-edit = "0.7.0"
nanoid = "0.3.0"
predicates = "1.0.7"
predicates = { version = "1.0.7", default-features = false }
remove_dir_all = "0.7.0"

0 comments on commit af93c49

Please sign in to comment.