cargo: use only "toml" feature from config crate

We don't need the `config` crate's support for JSON etc., so let's
just enable the TOML feature. (Trying to import all the JSON, RON,
dependencies etc. into Google's source control was a pain.)
This commit is contained in:
Martin von Zweigbergk 2022-05-20 11:00:42 -07:00 committed by Martin von Zweigbergk
parent 5d8f7dd0ce
commit 8f0c6a2fe9
2 changed files with 2 additions and 2 deletions

View file

@ -39,7 +39,7 @@ chrono = "0.4.19"
clap = { version = "3.1.18", features = ["derive"] }
clap_complete = "3.1.4"
clap_mangen = "0.1"
config = "0.13.1"
config = { version = "0.13.1", features = ["toml"] }
criterion = "0.3.5"
dirs = "4.0.0"
git2 = "0.14.2"

View file

@ -23,7 +23,7 @@ blake2 = "0.10.4"
bytes = "1.1.0"
byteorder = "1.4.3"
chrono = "0.4.19"
config = "0.13.1"
config = { version = "0.13.1", features = ["toml"] }
git2 = "0.14.2"
hex = "0.4.3"
itertools = "0.10.3"