diff --git a/arti/Cargo.toml b/arti/Cargo.toml index ad57a6b29..0e0ebac38 100644 --- a/arti/Cargo.toml +++ b/arti/Cargo.toml @@ -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"] } diff --git a/tor-client/Cargo.toml b/tor-client/Cargo.toml index c3061c755..3950c550f 100644 --- a/tor-client/Cargo.toml +++ b/tor-client/Cargo.toml @@ -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" diff --git a/tor-config/Cargo.toml b/tor-config/Cargo.toml index 22cc4b85d..87c0569f9 100644 --- a/tor-config/Cargo.toml +++ b/tor-config/Cargo.toml @@ -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"