diff options
Diffstat (limited to 'crates')
33 files changed, 176 insertions, 176 deletions
diff --git a/crates/arti-bench/Cargo.toml b/crates/arti-bench/Cargo.toml index ba06a552d..8af650346 100644 --- a/crates/arti-bench/Cargo.toml +++ b/crates/arti-bench/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arti-bench" -version = "0.8.2" +version = "0.8.3" edition = "2021" rust-version = "1.60" authors = ["The Tor Project, Inc.", "eta <[email protected]>"] @@ -13,8 +13,8 @@ repository = "https://gitlab.torproject.org/tpo/core/arti.git/" [dependencies] anyhow = "1.0.23" -arti = { path = "../arti", version = "1.1.2" } -arti-client = { package = "arti-client", path = "../arti-client", version = "0.8.2" } +arti = { path = "../arti", version = "1.1.3" } +arti-client = { package = "arti-client", path = "../arti-client", version = "0.8.3" } clap = "3.2.20" float-ord = "0.3" fs-mistrust = { path = "../fs-mistrust", version = "0.6.2" } @@ -24,7 +24,7 @@ serde = { version = "1.0.103", features = ["derive"] } serde_json = "1.0.50" tokio = { version = "1.7", features = ["full"] } tokio-socks = "0.5" -tor-config = { path = "../tor-config", version = "0.7.2" } +tor-config = { path = "../tor-config", version = "0.8.0" } tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", features = ["tokio", "native-tls"] } tracing = "0.1.18" tracing-subscriber = { version = "0.3.0", features = ["env-filter"] } diff --git a/crates/arti-client/Cargo.toml b/crates/arti-client/Cargo.toml index 6cb6d4a71..0b9f5d4bf 100644 --- a/crates/arti-client/Cargo.toml +++ b/crates/arti-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arti-client" -version = "0.8.2" +version = "0.8.3" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -82,26 +82,26 @@ humantime-serde = "1.1.1" libc = "0.2" pin-project = "1" postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] } -safelog = { path = "../safelog", version = "0.2.1" } +safelog = { path = "../safelog", version = "0.2.2" } serde = { version = "1.0.103", features = ["derive"] } thiserror = "1" tor-async-utils = { path = "../tor-async-utils", version = "0.0.1" } -tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" } -tor-cell = { path = "../tor-cell", version = "0.9.0" } -tor-chanmgr = { path = "../tor-chanmgr", version = "0.8.2" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.6.0" } +tor-cell = { path = "../tor-cell", version = "0.9.1" } +tor-chanmgr = { path = "../tor-chanmgr", version = "0.8.3" } tor-checkable = { path = "../tor-checkable", version = "0.4.2" } -tor-circmgr = { path = "../tor-circmgr", version = "0.7.2" } -tor-config = { path = "../tor-config", version = "0.7.2" } -tor-dirmgr = { path = "../tor-dirmgr", version = "0.9.2", default-features = false, features = ["mmap"] } +tor-circmgr = { path = "../tor-circmgr", version = "0.7.3" } +tor-config = { path = "../tor-config", version = "0.8.0" } +tor-dirmgr = { path = "../tor-dirmgr", version = "0.9.3", default-features = false, features = ["mmap"] } tor-error = { path = "../tor-error", version = "0.4.1" } tor-guardmgr = { path = "../tor-guardmgr", version = "0.8.2" } -tor-hsclient = { path = "../tor-hsclient", version = "0.1.1", optional = true } -tor-hscrypto = { path = "../tor-hscrypto", version = "0.1.1", optional = true } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.2" } +tor-hsclient = { path = "../tor-hsclient", version = "0.1.2", optional = true } +tor-hscrypto = { path = "../tor-hscrypto", version = "0.1.2", optional = true } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.3" } tor-netdir = { path = "../tor-netdir", version = "0.8.0" } -tor-netdoc = { path = "../tor-netdoc", version = "0.6.2" } +tor-netdoc = { path = "../tor-netdoc", version = "0.6.3" } tor-persist = { path = "../tor-persist", version = "0.6.2" } -tor-proto = { path = "../tor-proto", version = "0.9.0" } +tor-proto = { path = "../tor-proto", version = "0.9.1" } tor-ptmgr = { path = "../tor-ptmgr", version = "0.2.2", optional = true } tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1" } tracing = "0.1.18" diff --git a/crates/arti-hyper/Cargo.toml b/crates/arti-hyper/Cargo.toml index 8bca66307..c73af7729 100644 --- a/crates/arti-hyper/Cargo.toml +++ b/crates/arti-hyper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arti-hyper" -version = "0.8.2" +version = "0.8.3" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -25,7 +25,7 @@ experimental-api = [] [dependencies] anyhow = "1.0.23" -arti-client = { path = "../arti-client", version = "0.8.2" } +arti-client = { path = "../arti-client", version = "0.8.3" } educe = "0.4.6" hyper = { version = "0.14", features = ["http1", "client", "runtime"] } pin-project = "1" diff --git a/crates/arti-testing/Cargo.toml b/crates/arti-testing/Cargo.toml index e212543a6..9f2c7f4ff 100644 --- a/crates/arti-testing/Cargo.toml +++ b/crates/arti-testing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arti-testing" -version = "0.8.2" +version = "0.8.3" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -16,8 +16,8 @@ publish = false [dependencies] anyhow = "1.0.23" -arti = { package = "arti", path = "../arti", version = "1.1.2" } -arti-client = { package = "arti-client", path = "../arti-client", version = "0.8.2", features = [ +arti = { package = "arti", path = "../arti", version = "1.1.3" } +arti-client = { package = "arti-client", path = "../arti-client", version = "0.8.3", features = [ "dirfilter", ] } async-trait = "0.1.2" @@ -30,12 +30,12 @@ rand = "0.8" serde = { version = "1.0.103", features = ["derive"] } tokio = { version = "1.7", features = ["signal", "macros"] } tor-checkable = { path = "../tor-checkable", version = "0.4.2", features = ["experimental-api"] } -tor-config = { path = "../tor-config", version = "0.7.2" } -tor-dirmgr = { package = "tor-dirmgr", path = "../tor-dirmgr", version = "0.9.2", features = [ +tor-config = { path = "../tor-config", version = "0.8.0" } +tor-dirmgr = { package = "tor-dirmgr", path = "../tor-dirmgr", version = "0.9.3", features = [ "dirfilter", ] } tor-error = { path = "../tor-error", version = "0.4.1" } -tor-netdoc = { package = "tor-netdoc", path = "../tor-netdoc", version = "0.6.2", features = [ +tor-netdoc = { package = "tor-netdoc", path = "../tor-netdoc", version = "0.6.3", features = [ "experimental-api", "dangerous-expose-struct-fields", ] } diff --git a/crates/arti/Cargo.toml b/crates/arti/Cargo.toml index e62300535..90a472399 100644 --- a/crates/arti/Cargo.toml +++ b/crates/arti/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arti" -version = "1.1.2" +version = "1.1.3" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -69,7 +69,7 @@ experimental = ["arti-client/experimental", "experimental-api", "onion-service-c [dependencies] anyhow = "1.0.23" -arti-client = { package = "arti-client", path = "../arti-client", version = "0.8.2", default-features = false } +arti-client = { package = "arti-client", path = "../arti-client", version = "0.8.3", default-features = false } async-ctrlc = { version = "1.2.0", optional = true } cfg-if = "1.0.0" clap = "3.2.20" @@ -84,16 +84,16 @@ notify = { version = "5.0", default-features = false, features = ["macos_kqueue" once_cell = { version = "1", optional = true } paste = "1" rlimit = "0.9.0" -safelog = { path = "../safelog", version = "0.2.1" } +safelog = { path = "../safelog", version = "0.2.2" } secmem-proc = { version = "0.2.0", optional = true } serde = { version = "1.0.103", features = ["derive"] } signal-hook = { version = "0.3", optional = true } signal-hook-async-std = { version = "0.2", optional = true } tokio-crate = { package = "tokio", version = "1.7", optional = true, features = ["signal"] } -tor-config = { path = "../tor-config", version = "0.7.2" } +tor-config = { path = "../tor-config", version = "0.8.0" } tor-error = { path = "../tor-error", version = "0.4.1", default-features = false } tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", default-features = false } -tor-socksproto = { path = "../tor-socksproto", version = "0.6.2" } +tor-socksproto = { path = "../tor-socksproto", version = "0.6.3" } tracing = "0.1.18" tracing-appender = "0.2.0" tracing-journald = { version = "0.3.0", optional = true } diff --git a/crates/caret/Cargo.toml b/crates/caret/Cargo.toml index a2c5634c2..2b7426a2b 100644 --- a/crates/caret/Cargo.toml +++ b/crates/caret/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "caret" -version = "0.3.1" +version = "0.3.2" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" diff --git a/crates/fs-mistrust/Cargo.toml b/crates/fs-mistrust/Cargo.toml index 6f9bde60a..d23deb785 100644 --- a/crates/fs-mistrust/Cargo.toml +++ b/crates/fs-mistrust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fs-mistrust" -version = "0.6.2" +version = "0.6.3" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/crates/safelog/Cargo.toml b/crates/safelog/Cargo.toml index 1a4620244..ae7d4c3e0 100644 --- a/crates/safelog/Cargo.toml +++ b/crates/safelog/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "safelog" -version = "0.2.1" +version = "0.2.2" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" diff --git a/crates/tor-basic-utils/Cargo.toml b/crates/tor-basic-utils/Cargo.toml index 17d8bc158..a0023df04 100644 --- a/crates/tor-basic-utils/Cargo.toml +++ b/crates/tor-basic-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-basic-utils" -version = "0.5.1" +version = "0.6.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" diff --git a/crates/tor-bytes/Cargo.toml b/crates/tor-bytes/Cargo.toml index a425cbc40..49b346a66 100644 --- a/crates/tor-bytes/Cargo.toml +++ b/crates/tor-bytes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-bytes" -version = "0.6.2" +version = "0.6.3" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -20,7 +20,7 @@ generic-array = "0.14.3" signature = "1" thiserror = "1" tor-error = { path = "../tor-error", version = "0.4.1" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.2" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.3" } zeroize = "1" [dev-dependencies] diff --git a/crates/tor-cell/Cargo.toml b/crates/tor-cell/Cargo.toml index 06acf43ce..e7558f631 100644 --- a/crates/tor-cell/Cargo.toml +++ b/crates/tor-cell/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-cell" -version = "0.9.0" +version = "0.9.1" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -28,19 +28,19 @@ testing = ["experimental-udp"] arrayref = "0.3" bitflags = "2" bytes = "1" -caret = { path = "../caret", version = "0.3.0" } +caret = { path = "../caret", version = "0.3.2" } derive_more = "0.99.3" educe = "0.4.6" paste = "1" rand = "0.8" thiserror = "1" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" } -tor-bytes = { path = "../tor-bytes", version = "0.6.2" } -tor-cert = { path = "../tor-cert", version = "0.6.2" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.6.0" } +tor-bytes = { path = "../tor-bytes", version = "0.6.3" } +tor-cert = { path = "../tor-cert", version = "0.6.3" } tor-error = { path = "../tor-error", version = "0.4.1" } -tor-hscrypto = { path = "../tor-hscrypto", version = "0.1.1", optional = true } -tor-linkspec = { path = "../tor-linkspec", version = "0.6.2" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.2" } +tor-hscrypto = { path = "../tor-hscrypto", version = "0.1.2", optional = true } +tor-linkspec = { path = "../tor-linkspec", version = "0.6.3" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.3" } tor-units = { path = "../tor-units", version = "0.5.0" } [dev-dependencies] diff --git a/crates/tor-cert/Cargo.toml b/crates/tor-cert/Cargo.toml index a598dc9d8..9c4523b29 100644 --- a/crates/tor-cert/Cargo.toml +++ b/crates/tor-cert/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-cert" -version = "0.6.2" +version = "0.6.3" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -17,14 +17,14 @@ experimental = ["encode"] encode = ["derive_builder"] [dependencies] -caret = { path = "../caret", version = "0.3.0" } +caret = { path = "../caret", version = "0.3.2" } derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti", optional = true } digest = "0.10.0" signature = "1" thiserror = "1" -tor-bytes = { path = "../tor-bytes", version = "0.6.2" } +tor-bytes = { path = "../tor-bytes", version = "0.6.3" } tor-checkable = { path = "../tor-checkable", version = "0.4.2" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.2" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.3" } [dev-dependencies] base64ct = "1.5.1" diff --git a/crates/tor-chanmgr/Cargo.toml b/crates/tor-chanmgr/Cargo.toml index 62e6df139..aafe9a0f3 100644 --- a/crates/tor-chanmgr/Cargo.toml +++ b/crates/tor-chanmgr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-chanmgr" -version = "0.8.2" +version = "0.8.3" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -28,19 +28,19 @@ educe = "0.4.6" futures = "0.3.14" postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] } rand = "0.8" -safelog = { path = "../safelog", version = "0.2.1" } +safelog = { path = "../safelog", version = "0.2.2" } serde = { version = "1.0.103", features = ["derive"] } thiserror = "1" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" } -tor-cell = { path = "../tor-cell", version = "0.9.0" } -tor-config = { path = "../tor-config", version = "0.7.2" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.6.0" } +tor-cell = { path = "../tor-cell", version = "0.9.1" } +tor-config = { path = "../tor-config", version = "0.8.0" } tor-error = { path = "../tor-error", version = "0.4.1" } -tor-linkspec = { path = "../tor-linkspec", version = "0.6.2" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.2" } +tor-linkspec = { path = "../tor-linkspec", version = "0.6.3" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.3" } tor-netdir = { path = "../tor-netdir", version = "0.8.0" } -tor-proto = { path = "../tor-proto", version = "0.9.0" } +tor-proto = { path = "../tor-proto", version = "0.9.1" } tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1" } -tor-socksproto = { path = "../tor-socksproto", version = "0.6.2", default-features = false, features = [ +tor-socksproto = { path = "../tor-socksproto", version = "0.6.3", default-features = false, features = [ "client-handshake", ] } tor-units = { path = "../tor-units", version = "0.5.0" } @@ -52,11 +52,11 @@ float_eq = "1.0.0" futures-await-test = "0.3.0" hex-literal = "0.3" itertools = "0.10.1" -tor-cell = { path = "../tor-cell", version = "0.9.0", features = ["testing"] } +tor-cell = { path = "../tor-cell", version = "0.9.1", features = ["testing"] } tor-netdir = { path = "../tor-netdir", version = "0.8.0", features = ["testing"] } -tor-proto = { path = "../tor-proto", version = "0.9.0", features = ["testing"] } +tor-proto = { path = "../tor-proto", version = "0.9.1", features = ["testing"] } tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", features = ["tokio", "native-tls"] } -tor-rtmock = { path = "../tor-rtmock", version = "0.7.0" } +tor-rtmock = { path = "../tor-rtmock", version = "0.7.2" } [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] diff --git a/crates/tor-checkable/Cargo.toml b/crates/tor-checkable/Cargo.toml index 3a4eb76ba..9066bf8e5 100644 --- a/crates/tor-checkable/Cargo.toml +++ b/crates/tor-checkable/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-checkable" -version = "0.4.2" +version = "0.4.3" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -19,7 +19,7 @@ experimental-api = [] humantime = "2" signature = "1" thiserror = "1" -tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.2" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.3" } [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] diff --git a/crates/tor-circmgr/Cargo.toml b/crates/tor-circmgr/Cargo.toml index 0783bc2aa..4624c6973 100644 --- a/crates/tor-circmgr/Cargo.toml +++ b/crates/tor-circmgr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-circmgr" -version = "0.7.2" +version = "0.7.3" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -46,21 +46,21 @@ once_cell = "1" pin-project = "1" rand = "0.8" retry-error = { path = "../retry-error", version = "0.3.0" } -safelog = { path = "../safelog", version = "0.2.1" } +safelog = { path = "../safelog", version = "0.2.2" } serde = { version = "1.0.103", features = ["derive"] } static_assertions = "1" thiserror = "1" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" } -tor-chanmgr = { path = "../tor-chanmgr", version = "0.8.2" } -tor-config = { path = "../tor-config", version = "0.7.2" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.6.0" } +tor-chanmgr = { path = "../tor-chanmgr", version = "0.8.3" } +tor-config = { path = "../tor-config", version = "0.8.0" } tor-error = { path = "../tor-error", version = "0.4.1" } tor-guardmgr = { path = "../tor-guardmgr", version = "0.8.2" } -tor-hscrypto = { path = "../tor-hscrypto", version = "0.1.1", optional = true } -tor-linkspec = { path = "../tor-linkspec", version = "0.6.2" } +tor-hscrypto = { path = "../tor-hscrypto", version = "0.1.2", optional = true } +tor-linkspec = { path = "../tor-linkspec", version = "0.6.3" } tor-netdir = { path = "../tor-netdir", version = "0.8.0" } -tor-netdoc = { path = "../tor-netdoc", version = "0.6.2" } +tor-netdoc = { path = "../tor-netdoc", version = "0.6.3" } tor-persist = { path = "../tor-persist", version = "0.6.2" } -tor-proto = { path = "../tor-proto", version = "0.9.0" } +tor-proto = { path = "../tor-proto", version = "0.9.1" } tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1" } tracing = "0.1.18" visibility = { version = "0.0.1", optional = true } @@ -71,7 +71,7 @@ futures-await-test = "0.3.0" tor-guardmgr = { path = "../tor-guardmgr", version = "0.8.2", features = [ "testing", ] } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.2" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.3" } tor-netdir = { path = "../tor-netdir", version = "0.8.0", features = [ "testing", ] } @@ -82,7 +82,7 @@ tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", features = [ "tokio", "native-tls", ] } -tor-rtmock = { path = "../tor-rtmock", version = "0.7.0" } +tor-rtmock = { path = "../tor-rtmock", version = "0.7.2" } [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] diff --git a/crates/tor-config/Cargo.toml b/crates/tor-config/Cargo.toml index bd36baf8a..c684aef84 100644 --- a/crates/tor-config/Cargo.toml +++ b/crates/tor-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-config" -version = "0.7.2" +version = "0.8.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -32,7 +32,7 @@ shellexpand = { version = "3.0", optional = true } strum = { version = "0.24", features = ["derive"] } thiserror = "1" toml = "0.7.2" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.6.0" } tor-error = { path = "../tor-error", version = "0.4.1" } tracing = "0.1.18" diff --git a/crates/tor-consdiff/Cargo.toml b/crates/tor-consdiff/Cargo.toml index 0583900b8..58fc6c527 100644 --- a/crates/tor-consdiff/Cargo.toml +++ b/crates/tor-consdiff/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-consdiff" -version = "0.4.2" +version = "0.4.3" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -19,7 +19,7 @@ slow-diff-apply = [] digest = "0.10.0" hex = "0.4" thiserror = "1" -tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.2" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.3" } [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] diff --git a/crates/tor-dirclient/Cargo.toml b/crates/tor-dirclient/Cargo.toml index bb72b92e3..17fb9f83b 100644 --- a/crates/tor-dirclient/Cargo.toml +++ b/crates/tor-dirclient/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-dirclient" -version = "0.6.2" +version = "0.6.3" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -30,19 +30,19 @@ httpdate = "1.0" itertools = "0.10.1" memchr = "2" thiserror = "1" -tor-circmgr = { path = "../tor-circmgr", version = "0.7.2" } +tor-circmgr = { path = "../tor-circmgr", version = "0.7.3" } tor-error = { path = "../tor-error", version = "0.4.1" } -tor-linkspec = { path = "../tor-linkspec", version = "0.6.2" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.2" } -tor-netdoc = { path = "../tor-netdoc", version = "0.6.2" } -tor-proto = { path = "../tor-proto", version = "0.9.0" } +tor-linkspec = { path = "../tor-linkspec", version = "0.6.3" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.3" } +tor-netdoc = { path = "../tor-netdoc", version = "0.6.3" } +tor-proto = { path = "../tor-proto", version = "0.9.1" } tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1" } tracing = "0.1.18" [dev-dependencies] futures-await-test = "0.3.0" tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", features = ["tokio", "native-tls"] } -tor-rtmock = { path = "../tor-rtmock", version = "0.7.0" } +tor-rtmock = { path = "../tor-rtmock", version = "0.7.2" } [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] diff --git a/crates/tor-dirmgr/Cargo.toml b/crates/tor-dirmgr/Cargo.toml index 606cd8148..01aefdc07 100644 --- a/crates/tor-dirmgr/Cargo.toml +++ b/crates/tor-dirmgr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-dirmgr" -version = "0.9.2" +version = "0.9.3" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -52,25 +52,25 @@ postage = { version = "0.5.0", default-features = false, features = ["futures-tr rand = "0.8" retry-error = { path = "../retry-error", version = "0.3.0" } rusqlite = { version = "0.29.0", features = ["time"] } -safelog = { path = "../safelog", version = "0.2.1" } +safelog = { path = "../safelog", version = "0.2.2" } scopeguard = "1" serde = { version = "1.0.103", features = ["derive"] } signature = "1" strum = { version = "0.24", features = ["derive"] } thiserror = "1" time = { version = "0.3", features = ["formatting", "parsing"] } -tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.6.0" } tor-checkable = { path = "../tor-checkable", version = "0.4.2" } -tor-circmgr = { path = "../tor-circmgr", version = "0.7.2" } -tor-config = { path = "../tor-config", version = "0.7.2" } -tor-consdiff = { path = "../tor-consdiff", version = "0.4.2" } -tor-dirclient = { path = "../tor-dirclient", version = "0.6.2", default-features = false } +tor-circmgr = { path = "../tor-circmgr", version = "0.7.3" } +tor-config = { path = "../tor-config", version = "0.8.0" } +tor-consdiff = { path = "../tor-consdiff", version = "0.4.3" } +tor-dirclient = { path = "../tor-dirclient", version = "0.6.3", default-features = false } tor-error = { path = "../tor-error", version = "0.4.1" } tor-guardmgr = { path = "../tor-guardmgr", version = "0.8.2" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.2" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.3" } tor-netdir = { path = "../tor-netdir", version = "0.8.0" } -tor-netdoc = { path = "../tor-netdoc", version = "0.6.2" } -tor-proto = { path = "../tor-proto", version = "0.9.0" } +tor-netdoc = { path = "../tor-netdoc", version = "0.6.3" } +tor-proto = { path = "../tor-proto", version = "0.9.1" } tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1" } tracing = "0.1.18" @@ -80,9 +80,9 @@ float_eq = "1.0.0" hex-literal = "0.3" tempfile = "3" tokio = { version = "1.7", features = ["full"] } -tor-linkspec = { path = "../tor-linkspec", version = "0.6.2" } +tor-linkspec = { path = "../tor-linkspec", version = "0.6.3" } tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", features = ["tokio", "native-tls"] } -tor-rtmock = { path = "../tor-rtmock", version = "0.7.0" } +tor-rtmock = { path = "../tor-rtmock", version = "0.7.2" } tracing-test = "0.2" [package.metadata.docs.rs] all-features = true diff --git a/crates/tor-guardmgr/Cargo.toml b/crates/tor-guardmgr/Cargo.toml index f68c74577..44b24b0f1 100644 --- a/crates/tor-guardmgr/Cargo.toml +++ b/crates/tor-guardmgr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-guardmgr" -version = "0.8.2" +version = "0.8.3" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -42,20 +42,20 @@ pin-project = "1" postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] } rand = "0.8" retain_mut = "0.1.3" -safelog = { path = "../safelog", version = "0.2.1" } +safelog = { path = "../safelog", version = "0.2.2" } serde = { version = "1.0.103", features = ["derive"] } strum = { version = "0.24", features = ["derive"] } thiserror = "1" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" } -tor-config = { path = "../tor-config", version = "0.7.2" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.6.0" } +tor-config = { path = "../tor-config", version = "0.8.0" } tor-error = { path = "../tor-error", version = "0.4.1" } -tor-linkspec = { path = "../tor-linkspec", version = "0.6.2" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.2" } +tor-linkspec = { path = "../tor-linkspec", version = "0.6.3" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.3" } tor-netdir = { path = "../tor-netdir", version = "0.8.0" } -tor-netdoc = { path = "../tor-netdoc", version = "0.6.2" } # for address pattern +tor-netdoc = { path = "../tor-netdoc", version = "0.6.3" } # for address pattern tor-persist = { path = "../tor-persist", version = "0.6.2" } -tor-proto = { path = "../tor-proto", version = "0.9.0" } -tor-protover = { path = "../tor-protover", version = "0.4.0", optional = true } +tor-proto = { path = "../tor-proto", version = "0.9.1" } +tor-protover = { path = "../tor-protover", version = "0.4.2", optional = true } tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1" } tor-units = { path = "../tor-units", version = "0.5.0" } tracing = "0.1.18" @@ -65,7 +65,7 @@ float_eq = "1.0.0" serde_json = "1.0.50" toml = "0.7.2" tor-netdir = { path = "../tor-netdir", version = "0.8.0", features = ["testing"] } -tor-netdoc = { path = "../tor-netdoc", version = "0.6.2" } +tor-netdoc = { path = "../tor-netdoc", version = "0.6.3" } tor-persist = { path = "../tor-persist", version = "0.6.2", features = ["testing"] } tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", features = ["tokio", "native-tls"] } diff --git a/crates/tor-hsclient/Cargo.toml b/crates/tor-hsclient/Cargo.toml index 865cfb3b9..9e76a71ce 100644 --- a/crates/tor-hsclient/Cargo.toml +++ b/crates/tor-hsclient/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-hsclient" -version = "0.1.1" +version = "0.1.2" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -26,20 +26,20 @@ postage = { version = "0.5.0", default-features = false, features = ["futures-tr rand_core = "0.6.2" slotmap = "1.0.6" thiserror = "1" -tor-circmgr = { version = "0.7.2", path = "../tor-circmgr", features = ["hs-client"] } -tor-config = { path = "../tor-config", version = "0.7.1" } +tor-circmgr = { version = "0.7.3", path = "../tor-circmgr", features = ["hs-client"] } +tor-config = { path = "../tor-config", version = "0.8.0" } tor-error = { path = "../tor-error", version = "0.4.1" } -tor-hscrypto = { version = "0.1.1", path = "../tor-hscrypto" } -tor-llcrypto = { version = "0.4.2", path = "../tor-llcrypto" } +tor-hscrypto = { version = "0.1.2", path = "../tor-hscrypto" } +tor-llcrypto = { version = "0.4.3", path = "../tor-llcrypto" } tor-netdir = { version = "0.8.0", path = "../tor-netdir" } -tor-proto = { version = "0.9.0", path = "../tor-proto", features = ["send-control-msg"] } +tor-proto = { version = "0.9.1", path = "../tor-proto", features = ["send-control-msg"] } tor-rtcompat = { version = "0.8.1", path = "../tor-rtcompat" } tracing = "0.1.18" [dev-dependencies] tokio-crate = { package = "tokio", version = "1.7", features = ["full"] } -tor-chanmgr = { path = "../tor-chanmgr", version = "0.8.1" } -tor-circmgr = { version = "0.7.2", path = "../tor-circmgr", features = ["hs-client", "testing"] } +tor-chanmgr = { path = "../tor-chanmgr", version = "0.8.3" } +tor-circmgr = { version = "0.7.3", path = "../tor-circmgr", features = ["hs-client", "testing"] } tor-guardmgr = { path = "../tor-guardmgr", version = "0.8.1", features = ["testing"] } tor-netdir = { path = "../tor-netdir", version = "0.8.0", features = ["testing"] } tor-persist = { path = "../tor-persist", version = "0.6.1", features = ["testing"] } diff --git a/crates/tor-hscrypto/Cargo.toml b/crates/tor-hscrypto/Cargo.toml index 736c103b9..b61093063 100644 --- a/crates/tor-hscrypto/Cargo.toml +++ b/crates/tor-hscrypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-hscrypto" -version = "0.1.1" +version = "0.1.2" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -21,13 +21,13 @@ digest = "0.10.0" itertools = "0.10.1" paste = "1" rand_core = "0.6.2" -safelog = { path = "../safelog", version = "0.2.1" } +safelog = { path = "../safelog", version = "0.2.2" } serde = { version = "1.0.103", features = ["derive"] } signature = "1" thiserror = "1" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" } -tor-bytes = { version = "0.6.1", path = "../tor-bytes" } -tor-llcrypto = { version = "0.4.2", path = "../tor-llcrypto", features = [ +tor-basic-utils = { path = "../tor-basic-utils", version = "0.6.0" } +tor-bytes = { version = "0.6.3", path = "../tor-bytes" } +tor-llcrypto = { version = "0.4.3", path = "../tor-llcrypto", features = [ "hsv3-client", "hsv3-service", ] } @@ -37,4 +37,4 @@ tor-units = { path = "../tor-units", version = "0.5.0" } hex = "0.4" hex-literal = "0.3" humantime = "2" -tor-basic-utils = { version = "0.5.0", path = "../tor-basic-utils" } +tor-basic-utils = { version = "0.6.0", path = "../tor-basic-utils" } diff --git a/crates/tor-hsservice/Cargo.toml b/crates/tor-hsservice/Cargo.toml index 9e9dec1d8..1d2177a4a 100644 --- a/crates/tor-hsservice/Cargo.toml +++ b/crates/tor-hsservice/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-hsservice" -version = "0.1.1" +version = "0.1.2" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -20,11 +20,11 @@ default = [] async-trait = "0.1.2" rand_core = "0.6.2" thiserror = "1" -tor-circmgr = { version = "0.7.2", path = "../tor-circmgr", features = ["hs-service"] } -tor-hscrypto = { version = "0.1.1", path = "../tor-hscrypto" } -tor-llcrypto = { version = "0.4.2", path = "../tor-llcrypto" } +tor-circmgr = { version = "0.7.3", path = "../tor-circmgr", features = ["hs-service"] } +tor-hscrypto = { version = "0.1.2", path = "../tor-hscrypto" } +tor-llcrypto = { version = "0.4.3", path = "../tor-llcrypto" } tor-netdir = { version = "0.8.0", path = "../tor-netdir" } -tor-proto = { version = "0.9.0", path = "../tor-proto" } +tor-proto = { version = "0.9.1", path = "../tor-proto" } tor-rtcompat = { version = "0.8.1", path = "../tor-rtcompat" } [dev-dependencies] diff --git a/crates/tor-linkspec/Cargo.toml b/crates/tor-linkspec/Cargo.toml index 6d2a41bec..8121b1107 100644 --- a/crates/tor-linkspec/Cargo.toml +++ b/crates/tor-linkspec/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-linkspec" -version = "0.6.2" +version = "0.6.3" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -25,16 +25,16 @@ derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" } derive_more = "0.99.3" educe = "0.4.6" hex = "0.4" -safelog = { path = "../safelog", version = "0.2.1" } +safelog = { path = "../safelog", version = "0.2.2" } serde = { version = "1.0.103", features = ["derive"] } serde_with = "2.0.1" strum = { version = "0.24", features = ["derive"] } thiserror = "1" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" } -tor-bytes = { path = "../tor-bytes", version = "0.6.2" } -tor-config = { path = "../tor-config", version = "0.7.2" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.2" } -tor-protover = { path = "../tor-protover", version = "0.4.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.6.0" } +tor-bytes = { path = "../tor-bytes", version = "0.6.3" } +tor-config = { path = "../tor-config", version = "0.8.0" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.3" } +tor-protover = { path = "../tor-protover", version = "0.4.2" } [dev-dependencies] hex-literal = "0.3" diff --git a/crates/tor-llcrypto/Cargo.toml b/crates/tor-llcrypto/Cargo.toml index 4118ec9a8..c0e39669d 100644 --- a/crates/tor-llcrypto/Cargo.toml +++ b/crates/tor-llcrypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-llcrypto" -version = "0.4.2" +version = "0.4.3" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -39,7 +39,7 @@ old_rand_core = { package = "rand_core", version = "0.5.1" } openssl = { version = "0.10.48", optional = true } rand_core = "0.6.2" rsa = "0.8.0" -safelog = { version = "0.2.1", path = "../safelog" } +safelog = { version = "0.2.2", path = "../safelog" } serde = "1.0.103" sha1 = "0.10.0" sha2 = "0.10.0" @@ -57,7 +57,7 @@ cipher = "0.4.1" hex-literal = "0.3" rand = "0.8" serde_test = "1.0.124" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.6.0" } [target.wasm32-unknown-unknown.dependencies] getrandom = { version = "0.2.3", features = ["js"] } diff --git a/crates/tor-netdir/Cargo.toml b/crates/tor-netdir/Cargo.toml index 0bc637fb3..fc1b09af2 100644 --- a/crates/tor-netdir/Cargo.toml +++ b/crates/tor-netdir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-netdir" -version = "0.8.0" +version = "0.8.1" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -47,13 +47,13 @@ strum = { version = "0.24", features = ["derive"] } thiserror = "1" time = { version = "0.3.17", features = ["macros"], optional = true } tor-checkable = { path = "../tor-checkable", version = "0.4.2" } -tor-config = { path = "../tor-config", version = "0.7.2" } +tor-config = { path = "../tor-config", version = "0.8.0" } tor-error = { path = "../tor-error", version = "0.4.1" } -tor-hscrypto = { path = "../tor-hscrypto", version = "0.1.1", optional = true } -tor-linkspec = { path = "../tor-linkspec", version = "0.6.2" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.2" } -tor-netdoc = { path = "../tor-netdoc", version = "0.6.2" } -tor-protover = { path = "../tor-protover", version = "0.4.0" } +tor-hscrypto = { path = "../tor-hscrypto", version = "0.1.2", optional = true } +tor-linkspec = { path = "../tor-linkspec", version = "0.6.3" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.3" } +tor-netdoc = { path = "../tor-netdoc", version = "0.6.3" } +tor-protover = { path = "../tor-protover", version = "0.4.2" } tor-units = { path = "../tor-units", version = "0.5.0" } tracing = "0.1.18" typed-index-collections = "3.1" @@ -63,8 +63,8 @@ float_eq = "1.0.0" hex = "0.4" hex-literal = "0.3" rand_chacha = "0.3" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" } -tor-netdoc = { path = "../tor-netdoc", version = "0.6.2", features = ["build_docs"] } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.6.0" } +tor-netdoc = { path = "../tor-netdoc", version = "0.6.3", features = ["build_docs"] } [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] diff --git a/crates/tor-netdoc/Cargo.toml b/crates/tor-netdoc/Cargo.toml index 5b34c077e..e42767896 100644 --- a/crates/tor-netdoc/Cargo.toml +++ b/crates/tor-netdoc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-netdoc" -version = "0.6.2" +version = "0.6.3" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -81,14 +81,14 @@ smallvec = "1.10" thiserror = "1" time = { version = "0.3", features = ["std", "parsing", "macros"] } tinystr = "0.7.0" -tor-bytes = { path = "../tor-bytes", version = "0.6.2" } -tor-cert = { path = "../tor-cert", version = "0.6.2" } +tor-bytes = { path = "../tor-bytes", version = "0.6.3" } +tor-cert = { path = "../tor-cert", version = "0.6.3" } tor-checkable = { path = "../tor-checkable", version = "0.4.2" } tor-error = { path = "../tor-error", version = "0.4.1" } -tor-hscrypto = { path = "../tor-hscrypto", version = "0.1.1", optional = true } -tor-linkspec = { path = "../tor-linkspec", version = "0.6.2", optional = true } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.2" } -tor-protover = { path = "../tor-protover", version = "0.4.0" } +tor-hscrypto = { path = "../tor-hscrypto", version = "0.1.2", optional = true } +tor-linkspec = { path = "../tor-linkspec", version = "0.6.3", optional = true } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.3" } +tor-protover = { path = "../tor-protover", version = "0.4.2" } tor-units = { version = "0.5.0", path = "../tor-units", optional = true } visibility = { version = "0.0.1", optional = true } visible = { version = "0.0.1", optional = true } @@ -99,7 +99,7 @@ zeroize = "1" hex-literal = "0.3" itertools = "0.10.1" serde_json = "1.0.50" -tor-basic-utils = { version = "0.5.0", path = "../tor-basic-utils" } +tor-basic-utils = { version = "0.6.0", path = "../tor-basic-utils" } [package.metadata.docs.rs] all-features = true diff --git a/crates/tor-proto/Cargo.toml b/crates/tor-proto/Cargo.toml index 67ff5d9a5..b909b22dc 100644 --- a/crates/tor-proto/Cargo.toml +++ b/crates/tor-proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-proto" -version = "0.9.0" +version = "0.9.1" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -44,24 +44,24 @@ hmac = "0.12.0" pin-project = "1" rand = "0.8" rand_core = "0.6.2" -safelog = { path = "../safelog", version = "0.2.1" } +safelog = { path = "../safelog", version = "0.2.2" } subtle = "2" thiserror = "1" tokio-crate = { package = "tokio", version = "1.7", optional = true } tokio-util = { version = "0.7.0", features = ["compat"], optional = true } tor-async-utils = { path = "../tor-async-utils", version = "0.0.1" } -tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" } -tor-bytes = { path = "../tor-bytes", version = "0.6.2" } -tor-cell = { path = "../tor-cell", version = "0.9.0" } -tor-cert = { path = "../tor-cert", version = "0.6.2" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.6.0" } +tor-bytes = { path = "../tor-bytes", version = "0.6.3" } +tor-cell = { path = "../tor-cell", version = "0.9.1" } +tor-cert = { path = "../tor-cert", version = "0.6.3" } tor-checkable = { path = "../tor-checkable", version = "0.4.2" } -tor-config = { path = "../tor-config", version = "0.7.2" } +tor-config = { path = "../tor-config", version = "0.8.0" } tor-error = { path = "../tor-error", version = "0.4.1" } -tor-linkspec = { path = "../tor-linkspec", version = "0.6.2" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.2" } -tor-protover = { path = "../tor-protover", version = "0.4.0" } +tor-linkspec = { path = "../tor-linkspec", version = "0.6.3" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.3" } +tor-protover = { path = "../tor-protover", version = "0.4.2" } tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1" } -tor-rtmock = { path = "../tor-rtmock", version = "0.7.0" } +tor-rtmock = { path = "../tor-rtmock", version = "0.7.2" } tor-units = { path = "../tor-units", version = "0.5.0" } tracing = "0.1.18" typenum = "1.12" diff --git a/crates/tor-protover/Cargo.toml b/crates/tor-protover/Cargo.toml index d0370f050..aaf25d4cd 100644 --- a/crates/tor-protover/Cargo.toml +++ b/crates/tor-protover/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-protover" -version = "0.4.1" +version = "0.4.2" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -12,7 +12,7 @@ categories = ["network-programming"] repository = "https://gitlab.torproject.org/tpo/core/arti.git/" [dependencies] -caret = { path = "../caret", version = "0.3.0" } +caret = { path = "../caret", version = "0.3.2" } thiserror = "1" [package.metadata.docs.rs] all-features = true diff --git a/crates/tor-ptmgr/Cargo.toml b/crates/tor-ptmgr/Cargo.toml index e47d43d5d..2423ae5d3 100644 --- a/crates/tor-ptmgr/Cargo.toml +++ b/crates/tor-ptmgr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-ptmgr" -version = "0.2.2" +version = "0.2.3" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -26,12 +26,12 @@ fs-mistrust = { version = "0.6.2", path = "../fs-mistrust" } futures = "0.3.14" serde = { version = "1.0.103", features = ["derive"] } thiserror = "1" -tor-chanmgr = { version = "0.8.2", path = "../tor-chanmgr", features = ["pt-client"] } -tor-config = { version = "0.7.2", path = "../tor-config" } +tor-chanmgr = { version = "0.8.3", path = "../tor-chanmgr", features = ["pt-client"] } +tor-config = { version = "0.8.0", path = "../tor-config" } tor-error = { version = "0.4.1", path = "../tor-error" } -tor-linkspec = { version = "0.6.2", path = "../tor-linkspec", features = ["pt-client"] } +tor-linkspec = { version = "0.6.3", path = "../tor-linkspec", features = ["pt-client"] } tor-rtcompat = { version = "0.8.1", path = "../tor-rtcompat" } -tor-socksproto = { version = "0.6.2", path = "../tor-socksproto" } +tor-socksproto = { version = "0.6.3", path = "../tor-socksproto" } tracing = "0.1.18" visibility = { version = "0.0.1", optional = true } diff --git a/crates/tor-rtcompat/Cargo.toml b/crates/tor-rtcompat/Cargo.toml index 2b7993886..592bcefa5 100644 --- a/crates/tor-rtcompat/Cargo.toml +++ b/crates/tor-rtcompat/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-rtcompat" -version = "0.8.1" +version = "0.8.2" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" diff --git a/crates/tor-rtmock/Cargo.toml b/crates/tor-rtmock/Cargo.toml index c8f492b78..96c86aba3 100644 --- a/crates/tor-rtmock/Cargo.toml +++ b/crates/tor-rtmock/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-rtmock" -version = "0.7.1" +version = "0.7.2" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -23,7 +23,7 @@ tracing = "0.1.18" [dev-dependencies] futures-await-test = "0.3.0" rand = "0.8" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.6.0" } tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", features = ["tokio", "native-tls"] } [package.metadata.docs.rs] all-features = true diff --git a/crates/tor-socksproto/Cargo.toml b/crates/tor-socksproto/Cargo.toml index 4c5c3b5b9..4166befc0 100644 --- a/crates/tor-socksproto/Cargo.toml +++ b/crates/tor-socksproto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-socksproto" -version = "0.6.2" +version = "0.6.3" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.60" @@ -18,10 +18,10 @@ proxy-handshake = [] [dependencies] arbitrary = { version = "1.0.1", optional = true, features = ["derive"] } -caret = { path = "../caret", version = "0.3.0" } +caret = { path = "../caret", version = "0.3.2" } subtle = "2" thiserror = "1" -tor-bytes = { path = "../tor-bytes", version = "0.6.2" } +tor-bytes = { path = "../tor-bytes", version = "0.6.3" } tor-error = { path = "../tor-error", version = "0.4.1" } [dev-dependencies] |
