upgrade to newer version of config crate.

This commit is contained in:
Nick Mathewson 2021-03-24 09:44:31 -04:00
parent d073f24138
commit 06d5988cdc
3 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ tor-socksproto = { path="../tor-socksproto", version= "*" }
tor-config = { path="../tor-config", version = "*" }
anyhow = "1.0.38"
config = { version = "0.10.1", default-features=false }
config = { version = "0.11.0", default-features = false }
futures = "0.3.13"
log = "0.4.14"
serde = { version = "1.0.124", features = ["derive"] }

View File

@ -27,7 +27,7 @@ tor-dirclient = { path="../tor-dirclient", version = "*" }
tor-linkspec = { path="../tor-linkspec", version = "*" }
anyhow = "1.0.38"
config = { version = "0.10.1", default-features=false }
config = { version = "0.11.0", default-features = false }
futures = "0.3.13"
log = "0.4.14"
thiserror = "1.0.24"

View File

@ -10,7 +10,7 @@ description = "Configuration types and code used by the Arti Tor implementation"
keywords = [ "tor", "arti" ]
[dependencies]
config = {version="0.10.1", default-features=false, features=["toml"]}
config = { version = "0.11.0", default-features = false, features = ["toml"] }
directories = "3.0.1"
serde = { version = "1.0.124", features = ["derive"] }
toml = "0.5.8"