summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/arti-bench/Cargo.toml10
-rw-r--r--crates/arti-client/Cargo.toml56
-rw-r--r--crates/arti-relay/Cargo.toml22
-rw-r--r--crates/arti-rpc-client-core/Cargo.toml8
-rw-r--r--crates/arti-rpcserver/Cargo.toml24
-rw-r--r--crates/arti-testing/Cargo.toml14
-rw-r--r--crates/arti/Cargo.toml38
-rw-r--r--crates/caret/Cargo.toml2
-rw-r--r--crates/equix/Cargo.toml4
-rw-r--r--crates/equix/bench/Cargo.lock111
-rw-r--r--crates/fs-mistrust/Cargo.toml2
-rw-r--r--crates/fslock-guard/Cargo.toml4
-rw-r--r--crates/hashx/Cargo.toml2
-rw-r--r--crates/hashx/bench/Cargo.lock107
-rw-r--r--crates/oneshot-fused-workaround/Cargo.toml2
-rw-r--r--crates/retry-error/Cargo.toml2
-rw-r--r--crates/safelog/Cargo.toml2
-rw-r--r--crates/slotmap-careful/Cargo.toml2
-rw-r--r--crates/test-temp-dir/Cargo.toml2
-rw-r--r--crates/tor-async-utils/Cargo.toml8
-rw-r--r--crates/tor-basic-utils/Cargo.toml2
-rw-r--r--crates/tor-bytes/Cargo.toml8
-rw-r--r--crates/tor-cell/Cargo.toml20
-rw-r--r--crates/tor-cert/Cargo.toml10
-rw-r--r--crates/tor-chanmgr/Cargo.toml40
-rw-r--r--crates/tor-checkable/Cargo.toml4
-rw-r--r--crates/tor-circmgr/Cargo.toml50
-rw-r--r--crates/tor-config/Cargo.toml16
-rw-r--r--crates/tor-congestion/Cargo.toml6
-rw-r--r--crates/tor-consdiff/Cargo.toml4
-rw-r--r--crates/tor-dirclient/Cargo.toml22
-rw-r--r--crates/tor-dirmgr/Cargo.toml46
-rw-r--r--crates/tor-error/Cargo.toml4
-rw-r--r--crates/tor-geoip/Cargo.toml2
-rw-r--r--crates/tor-guardmgr/Cargo.toml48
-rw-r--r--crates/tor-hsclient/Cargo.toml64
-rw-r--r--crates/tor-hscrypto/Cargo.toml16
-rw-r--r--crates/tor-hspow/Cargo.toml4
-rw-r--r--crates/tor-hsrproxy/Cargo.toml22
-rw-r--r--crates/tor-hsservice/Cargo.toml64
-rw-r--r--crates/tor-key-forge/Cargo.toml10
-rw-r--r--crates/tor-keymgr/Cargo.toml20
-rw-r--r--crates/tor-linkspec/Cargo.toml16
-rw-r--r--crates/tor-llcrypto/Cargo.toml6
-rw-r--r--crates/tor-log-ratelim/Cargo.toml6
-rw-r--r--crates/tor-memquota/Cargo.toml20
-rw-r--r--crates/tor-netdir/Cargo.toml22
-rw-r--r--crates/tor-netdoc/Cargo.toml26
-rw-r--r--crates/tor-persist/Cargo.toml16
-rw-r--r--crates/tor-proto/Cargo.toml38
-rw-r--r--crates/tor-protover/Cargo.toml4
-rw-r--r--crates/tor-ptmgr/Cargo.toml24
-rw-r--r--crates/tor-relay-crypto/Cargo.toml8
-rw-r--r--crates/tor-relay-selection/Cargo.toml18
-rw-r--r--crates/tor-rpcbase/Cargo.toml6
-rw-r--r--crates/tor-rtcompat/Cargo.toml4
-rw-r--r--crates/tor-rtmock/Cargo.toml12
-rw-r--r--crates/tor-socksproto/Cargo.toml8
-rw-r--r--crates/tor-units/Cargo.toml2
59 files changed, 579 insertions, 561 deletions
diff --git a/crates/arti-bench/Cargo.toml b/crates/arti-bench/Cargo.toml
index f1949a52e..9538e9516 100644
--- a/crates/arti-bench/Cargo.toml
+++ b/crates/arti-bench/Cargo.toml
@@ -17,19 +17,19 @@ publish = false
[dependencies]
anyhow = "1.0.23"
-arti = { path = "../arti", version = "1.2.7" }
-arti-client = { package = "arti-client", path = "../arti-client", version = "0.22.0" }
+arti = { path = "../arti", version = "1.2.8" }
+arti-client = { package = "arti-client", path = "../arti-client", version = "0.23.0" }
clap = { version = "4.3.24", features = ["wrap_help"] }
float-ord = "0.3"
-fs-mistrust = { path = "../fs-mistrust", version = "0.7.9" }
+fs-mistrust = { path = "../fs-mistrust", version = "0.8.0" }
futures = "0.3.14"
rand = "0.8"
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.22.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0", features = ["tokio", "native-tls"] }
+tor-config = { path = "../tor-config", version = "0.23.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0", features = ["tokio", "native-tls"] }
tracing = "0.1.36"
tracing-subscriber = { version = "0.3.0", features = ["env-filter"] }
diff --git a/crates/arti-client/Cargo.toml b/crates/arti-client/Cargo.toml
index c14301b02..4b4f18b79 100644
--- a/crates/arti-client/Cargo.toml
+++ b/crates/arti-client/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "arti-client"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -134,7 +134,7 @@ derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = { version = "1.0.0", features = ["full"] }
dyn-clone = { version = "1.0.11", optional = true }
educe = "0.4.6"
-fs-mistrust = { path = "../fs-mistrust", version = "0.7.9", features = ["serde"] }
+fs-mistrust = { path = "../fs-mistrust", version = "0.8.0", features = ["serde"] }
futures = "0.3.14"
hostname-validator = "1.1.1"
humantime = "2"
@@ -142,33 +142,33 @@ humantime-serde = "1.1.1"
libc = "0.2"
postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] }
rand = "0.8"
-safelog = { path = "../safelog", version = "0.3.6" }
+safelog = { path = "../safelog", version = "0.4.0" }
serde = { version = "1.0.103", features = ["derive"] }
thiserror = "1"
-tor-async-utils = { path = "../tor-async-utils", version = "0.22.0" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-chanmgr = { path = "../tor-chanmgr", version = "0.22.0" }
-tor-circmgr = { path = "../tor-circmgr", version = "0.22.0" }
-tor-config = { path = "../tor-config", version = "0.22.0" }
-tor-dirmgr = { path = "../tor-dirmgr", version = "0.22.0", default-features = false, features = ["mmap"] }
-tor-error = { path = "../tor-error", version = "0.22.0", features = ["tracing"] }
-tor-geoip = { path = "../tor-geoip", version = "0.22.0", optional = true }
-tor-guardmgr = { path = "../tor-guardmgr", version = "0.22.0" }
-tor-hsclient = { path = "../tor-hsclient", version = "0.22.0", optional = true }
-tor-hscrypto = { path = "../tor-hscrypto", version = "0.22.0", optional = true }
-tor-hsservice = { path = "../tor-hsservice", version = "0.22.0", optional = true }
-tor-keymgr = { path = "../tor-keymgr", version = "0.22.0", default-features = false }
-tor-linkspec = { path = "../tor-linkspec", version = "0.22.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.22.0" }
+tor-async-utils = { path = "../tor-async-utils", version = "0.23.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-chanmgr = { path = "../tor-chanmgr", version = "0.23.0" }
+tor-circmgr = { path = "../tor-circmgr", version = "0.23.0" }
+tor-config = { path = "../tor-config", version = "0.23.0" }
+tor-dirmgr = { path = "../tor-dirmgr", version = "0.23.0", default-features = false, features = ["mmap"] }
+tor-error = { path = "../tor-error", version = "0.23.0", features = ["tracing"] }
+tor-geoip = { path = "../tor-geoip", version = "0.23.0", optional = true }
+tor-guardmgr = { path = "../tor-guardmgr", version = "0.23.0" }
+tor-hsclient = { path = "../tor-hsclient", version = "0.23.0", optional = true }
+tor-hscrypto = { path = "../tor-hscrypto", version = "0.23.0", optional = true }
+tor-hsservice = { path = "../tor-hsservice", version = "0.23.0", optional = true }
+tor-keymgr = { path = "../tor-keymgr", version = "0.23.0", default-features = false }
+tor-linkspec = { path = "../tor-linkspec", version = "0.23.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.23.0" }
# tor-memquota dependency is unconditional, but most of the code is behind tor-memquota/memquota
-tor-memquota = { path = "../tor-memquota", version = "0.22.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.22.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.22.0" }
-tor-persist = { path = "../tor-persist", version = "0.22.0" }
-tor-proto = { path = "../tor-proto", version = "0.22.0" }
-tor-ptmgr = { path = "../tor-ptmgr", version = "0.22.0", optional = true }
-tor-rpcbase = { path = "../tor-rpcbase", version = "0.22.0", optional = true }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0" }
+tor-memquota = { path = "../tor-memquota", version = "0.23.0" }
+tor-netdir = { path = "../tor-netdir", version = "0.23.0" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.23.0" }
+tor-persist = { path = "../tor-persist", version = "0.23.0" }
+tor-proto = { path = "../tor-proto", version = "0.23.0" }
+tor-ptmgr = { path = "../tor-ptmgr", version = "0.23.0", optional = true }
+tor-rpcbase = { path = "../tor-rpcbase", version = "0.23.0", optional = true }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0" }
tracing = "0.1.36"
visibility = { version = "0.1.0", optional = true }
void = "1"
@@ -188,8 +188,8 @@ tokio-crate = { package = "tokio", version = "1.7", features = [
"macros",
] }
toml = "0.8.8"
-tor-relay-selection = { path = "../tor-relay-selection", version = "0.22.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0", features = ["tokio", "native-tls"] }
+tor-relay-selection = { path = "../tor-relay-selection", version = "0.23.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0", features = ["tokio", "native-tls"] }
tracing-subscriber = "0.3.0"
[package.metadata.docs.rs]
diff --git a/crates/arti-relay/Cargo.toml b/crates/arti-relay/Cargo.toml
index ec066e51f..287099094 100644
--- a/crates/arti-relay/Cargo.toml
+++ b/crates/arti-relay/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "arti-relay"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc."]
edition = "2021"
rust-version = "1.77"
@@ -35,20 +35,20 @@ tokio = ["tor-rtcompat/tokio", "tor-proto/tokio"]
[dependencies]
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = { version = "1.0.0", features = ["full"] }
-fs-mistrust = { path = "../fs-mistrust", version = "0.7.9", features = ["serde"] }
+fs-mistrust = { path = "../fs-mistrust", version = "0.8.0", features = ["serde"] }
rand = "0.8.5"
serde = { version = "1.0.103", features = ["derive"] }
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "1"
-tor-chanmgr = { path = "../tor-chanmgr", version = "0.22.0" }
-tor-config = { path = "../tor-config", version = "0.22.0" }
-tor-error = { path = "../tor-error", version = "0.22.0" }
-tor-keymgr = { path = "../tor-keymgr", version = "0.22.0", features = ["keymgr", "ephemeral-keystore"] }
-tor-netdir = { path = "../tor-netdir", version = "0.22.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.22.0" }
-tor-proto = { path = "../tor-proto", version = "0.22.0" }
-tor-relay-crypto = { path = "../tor-relay-crypto", version = "0.22.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0" }
+tor-chanmgr = { path = "../tor-chanmgr", version = "0.23.0" }
+tor-config = { path = "../tor-config", version = "0.23.0" }
+tor-error = { path = "../tor-error", version = "0.23.0" }
+tor-keymgr = { path = "../tor-keymgr", version = "0.23.0", features = ["keymgr", "ephemeral-keystore"] }
+tor-netdir = { path = "../tor-netdir", version = "0.23.0" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.23.0" }
+tor-proto = { path = "../tor-proto", version = "0.23.0" }
+tor-relay-crypto = { path = "../tor-relay-crypto", version = "0.23.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0" }
tracing = "0.1.36"
[dev-dependencies]
diff --git a/crates/arti-rpc-client-core/Cargo.toml b/crates/arti-rpc-client-core/Cargo.toml
index 699b5d662..89473863d 100644
--- a/crates/arti-rpc-client-core/Cargo.toml
+++ b/crates/arti-rpc-client-core/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "arti-rpc-client-core"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -18,7 +18,7 @@ crate-type = ["cdylib", "lib"]
[dependencies]
c_str_macro = { version = "1", optional = true }
-caret = { path = "../caret", version = "0.4.5" }
+caret = { path = "../caret", version = "0.5.0" }
cfg-if = "1.0.0"
derive_more = { version = "1.0.0", features = ["full"] }
educe = "0.4.6"
@@ -26,7 +26,7 @@ paste = { version = "1", optional = true }
serde = { version = "1.0.103", features = ["derive"] }
serde_json = "1.0.104"
thiserror = "1"
-tor-socksproto = { path = "../tor-socksproto", version = "0.22.0", default-features = false, features = [
+tor-socksproto = { path = "../tor-socksproto", version = "0.23.0", default-features = false, features = [
"client-handshake",
] }
void = "1"
@@ -35,7 +35,7 @@ void = "1"
rand = "0.8"
rand_chacha = "0.3"
socketpair = "0.19"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
[features]
full = ["ffi", "caret/full", "tor-socksproto/full"]
diff --git a/crates/arti-rpcserver/Cargo.toml b/crates/arti-rpcserver/Cargo.toml
index 0a82d2122..21f436cb4 100644
--- a/crates/arti-rpcserver/Cargo.toml
+++ b/crates/arti-rpcserver/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "arti-rpcserver"
-version = "0.22.0"
+version = "0.23.0"
edition = "2021"
rust-version = "1.77"
authors = ["The Tor Project, Inc.", "eta <[email protected]>"]
@@ -27,7 +27,7 @@ full = [
describe-methods = ["tor-rpcbase/describe-methods"]
[dependencies]
-arti-client = { path = "../arti-client", version = "0.22.0", features = ["rpc"] }
+arti-client = { path = "../arti-client", version = "0.23.0", features = ["rpc"] }
async-trait = "0.1.54"
asynchronous-codec = { version = "0.7.0", features = ["json"] }
base64ct = "1.5.1"
@@ -36,21 +36,21 @@ derive-deftly = "0.14"
derive_more = { version = "1.0.0", features = ["full"] }
erased-serde = "0.4.2"
futures = "0.3.14"
-oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.1.0" }
+oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.2.0" }
pin-project = "1"
rand = "0.8"
serde = { version = "1.0.103", features = ["derive"] }
serde_json = "1.0.50"
-slotmap-careful = { path = "../slotmap-careful", version = "0.1.0" }
+slotmap-careful = { path = "../slotmap-careful", version = "0.2.0" }
thiserror = "1"
tiny-keccak = { version = "2", features = ["kmac"] }
-tor-async-utils = { path = "../tor-async-utils", version = "0.22.0" }
-tor-bytes = { path = "../tor-bytes", version = "0.22.0" }
-tor-error = { path = "../tor-error", version = "0.22.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.22.0" }
-tor-proto = { path = "../tor-proto", version = "0.22.0", features = ["stream-ctrl"] }
-tor-rpcbase = { path = "../tor-rpcbase", version = "0.22.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0" }
+tor-async-utils = { path = "../tor-async-utils", version = "0.23.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.23.0" }
+tor-error = { path = "../tor-error", version = "0.23.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.23.0" }
+tor-proto = { path = "../tor-proto", version = "0.23.0", features = ["stream-ctrl"] }
+tor-rpcbase = { path = "../tor-rpcbase", version = "0.23.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0" }
tracing = "0.1.36"
typetag = "0.2.7"
weak-table = "0.3.0"
@@ -58,4 +58,4 @@ zeroize = "1"
[dev-dependencies]
futures-await-test = "0.3.0"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
diff --git a/crates/arti-testing/Cargo.toml b/crates/arti-testing/Cargo.toml
index 7e272d583..8d07c5d10 100644
--- a/crates/arti-testing/Cargo.toml
+++ b/crates/arti-testing/Cargo.toml
@@ -25,22 +25,22 @@ full = [
[dependencies]
anyhow = "1.0.23"
-arti = { package = "arti", path = "../arti", version = "1.2.7" }
-arti-client = { package = "arti-client", path = "../arti-client", version = "0.22.0", features = ["dirfilter"] }
+arti = { package = "arti", path = "../arti", version = "1.2.8" }
+arti-client = { package = "arti-client", path = "../arti-client", version = "0.23.0", features = ["dirfilter"] }
async-trait = "0.1.54"
clap = { version = "4.3.24", features = ["wrap_help"] }
futures = "0.3.14"
pin-project = "1"
rand = "0.8"
tokio = { version = "1.7", features = ["signal", "macros"] }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-config = { path = "../tor-config", version = "0.22.0" }
-tor-dirmgr = { package = "tor-dirmgr", path = "../tor-dirmgr", version = "0.22.0", features = ["dirfilter"] }
-tor-netdoc = { package = "tor-netdoc", path = "../tor-netdoc", version = "0.22.0", features = [
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-config = { path = "../tor-config", version = "0.23.0" }
+tor-dirmgr = { package = "tor-dirmgr", path = "../tor-dirmgr", version = "0.23.0", features = ["dirfilter"] }
+tor-netdoc = { package = "tor-netdoc", path = "../tor-netdoc", version = "0.23.0", features = [
"experimental-api",
"dangerous-expose-struct-fields",
] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0" }
tracing = "0.1.36"
tracing-subscriber = { version = "0.3.0", features = ["env-filter"] }
[package.metadata.docs.rs]
diff --git a/crates/arti/Cargo.toml b/crates/arti/Cargo.toml
index fda24a5c1..f00cf0589 100644
--- a/crates/arti/Cargo.toml
+++ b/crates/arti/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "arti"
-version = "1.2.7"
+version = "1.2.8"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -109,18 +109,18 @@ __is_experimental = []
[dependencies]
anyhow = "1.0.23"
-arti-client = { package = "arti-client", path = "../arti-client", version = "0.22.0", default-features = false, features = [
+arti-client = { package = "arti-client", path = "../arti-client", version = "0.23.0", default-features = false, features = [
"anyhow",
] }
-arti-relay = { package = "arti-relay", path = "../arti-relay", version = "0.22.0", default-features = false, optional = true }
-arti-rpcserver = { path = "../arti-rpcserver", version = "0.22.0", optional = true }
+arti-relay = { package = "arti-relay", path = "../arti-relay", version = "0.23.0", default-features = false, optional = true }
+arti-rpcserver = { path = "../arti-rpcserver", version = "0.23.0", optional = true }
async-ctrlc = { version = "1.2.0", optional = true }
dialoguer = { version = "0.11.0", optional = true }
cfg-if = "1.0.0"
clap = { version = "4.3.24", features = ["string", "wrap_help", "derive"] }
derive_builder = { version = "0.11", package = "derive_builder_fork_arti" }
derive-deftly = { version = "0.14", optional = true }
-fs-mistrust = { path = "../fs-mistrust", version = "0.7.9" }
+fs-mistrust = { path = "../fs-mistrust", version = "0.8.0" }
futures = "0.3.14"
hickory-proto = { version = "0.24.0", optional = true }
humantime = "2"
@@ -136,7 +136,7 @@ rustls-crate = { package = "rustls", version = "0.23.5", optional = true, defaul
"logging",
"ring",
] }
-safelog = { path = "../safelog", version = "0.3.6" }
+safelog = { path = "../safelog", version = "0.4.0" }
secmem-proc = { version = "0.3.0", optional = true }
serde = { version = "1.0.103", features = ["derive"] }
signal-hook = { version = "0.3", optional = true }
@@ -146,14 +146,14 @@ time = "0.3.18"
tokio-crate = { package = "tokio", version = "1.7", optional = true, features = ["signal"] }
tokio-util = { version = "0.7.0", features = ["compat"], optional = true }
toml = "0.8.8"
-tor-async-utils = { path = "../tor-async-utils", version = "0.22.0" }
-tor-config = { path = "../tor-config", version = "0.22.0" }
-tor-error = { path = "../tor-error", version = "0.22.0", default-features = false, features = ["tracing"] }
-tor-hsrproxy = { path = "../tor-hsrproxy", version = "0.22.0", optional = true }
-tor-hsservice = { path = "../tor-hsservice", version = "0.22.0", optional = true }
-tor-rpcbase = { path = "../tor-rpcbase", version = "0.22.0", optional = true }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0", default-features = false }
-tor-socksproto = { path = "../tor-socksproto", version = "0.22.0" }
+tor-async-utils = { path = "../tor-async-utils", version = "0.23.0" }
+tor-config = { path = "../tor-config", version = "0.23.0" }
+tor-error = { path = "../tor-error", version = "0.23.0", default-features = false, features = ["tracing"] }
+tor-hsrproxy = { path = "../tor-hsrproxy", version = "0.23.0", optional = true }
+tor-hsservice = { path = "../tor-hsservice", version = "0.23.0", optional = true }
+tor-rpcbase = { path = "../tor-rpcbase", version = "0.23.0", optional = true }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0", default-features = false }
+tor-socksproto = { path = "../tor-socksproto", version = "0.23.0" }
tracing = "0.1.36"
tracing-appender = "0.2.0"
tracing-journald = { version = "0.3.0", optional = true }
@@ -161,7 +161,7 @@ tracing-subscriber = { version = "0.3.0", features = ["env-filter"] }
visibility = { version = "0.1.0", optional = true }
[dev-dependencies]
-arti-client = { package = "arti-client", path = "../arti-client", version = "0.22.0", default-features = false, features = [
+arti-client = { package = "arti-client", path = "../arti-client", version = "0.23.0", default-features = false, features = [
"testing",
] }
derive_more = { version = "1.0.0", features = ["full"] }
@@ -170,10 +170,10 @@ postage = { version = "0.5.0", default-features = false, features = ["futures-tr
regex = { version = "1", default-features = false, features = ["std"] }
serde_json = "1.0.50"
tempfile = "3"
-test-temp-dir = { version = "0.2.1", path = "../test-temp-dir" }
-tor-async-utils = { version = "0.22.0", path = "../tor-async-utils" }
-tor-memquota = { path = "../tor-memquota", version = "0.22.0", features = ["testing"] }
-tor-rtmock = { path = "../tor-rtmock", version = "0.22.0" }
+test-temp-dir = { version = "0.3.0", path = "../test-temp-dir" }
+tor-async-utils = { version = "0.23.0", path = "../tor-async-utils" }
+tor-memquota = { path = "../tor-memquota", version = "0.23.0", features = ["testing"] }
+tor-rtmock = { path = "../tor-rtmock", version = "0.23.0" }
trycmd = "0.15.4"
[target.'cfg(windows)'.dependencies]
diff --git a/crates/caret/Cargo.toml b/crates/caret/Cargo.toml
index e9f69d839..ef75cb791 100644
--- a/crates/caret/Cargo.toml
+++ b/crates/caret/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "caret"
-version = "0.4.7"
+version = "0.5.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
diff --git a/crates/equix/Cargo.toml b/crates/equix/Cargo.toml
index b88931a5e..23f93c63a 100644
--- a/crates/equix/Cargo.toml
+++ b/crates/equix/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "equix"
-version = "0.1.7"
+version = "0.2.0"
authors = ["The Tor Project, Inc.", "Micah Elizabeth Scott <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -31,7 +31,7 @@ __is_experimental = []
[dependencies]
arrayvec = "0.7.4"
-hashx = { path = "../hashx", version = "0.1.3", default-features = false }
+hashx = { path = "../hashx", version = "0.2.0", default-features = false }
num-traits = "0.2.15"
thiserror = "1.0.40"
visibility = "0.1.0"
diff --git a/crates/equix/bench/Cargo.lock b/crates/equix/bench/Cargo.lock
index 5be9a6e98..8256ec13c 100644
--- a/crates/equix/bench/Cargo.lock
+++ b/crates/equix/bench/Cargo.lock
@@ -31,9 +31,9 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
[[package]]
name = "autocfg"
-version = "1.3.0"
+version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
+checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
[[package]]
name = "bindgen"
@@ -54,7 +54,7 @@ dependencies = [
"regex",
"rustc-hash",
"shlex",
- "syn 2.0.77",
+ "syn 2.0.79",
"which",
]
@@ -108,9 +108,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
[[package]]
name = "cc"
-version = "1.1.15"
+version = "1.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "57b6a275aa2903740dc87da01c62040406b8812552e97129a63ea8850a17c6e6"
+checksum = "3bbb537bb4a30b90362caddba8f360c0a56bc13d3a5570028e7197204cb54a17"
dependencies = [
"jobserver",
"libc",
@@ -172,18 +172,18 @@ dependencies = [
[[package]]
name = "clap"
-version = "4.5.16"
+version = "4.5.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ed6719fffa43d0d87e5fd8caeab59be1554fb028cd30edc88fc4369b17971019"
+checksum = "b0956a43b323ac1afaffc053ed5c4b7c1f1800bacd1683c353aabbb752515dd3"
dependencies = [
"clap_builder",
]
[[package]]
name = "clap_builder"
-version = "4.5.15"
+version = "4.5.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "216aec2b177652e3846684cbfe25c9964d18ec45234f0f5da5157b207ed1aab6"
+checksum = "4d72166dd41634086d5803a47eb71ae740e61d84709c36f3c34110173db3961b"
dependencies = [
"anstyle",
"clap_lex",
@@ -318,7 +318,7 @@ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
[[package]]
name = "equix"
-version = "0.1.7"
+version = "0.2.0"
dependencies = [
"arrayvec",
"hashx",
@@ -398,7 +398,7 @@ dependencies = [
[[package]]
name = "hashx"
-version = "0.1.5"
+version = "0.2.0"
dependencies = [
"arrayvec",
"blake2",
@@ -488,9 +488,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]]
name = "libc"
-version = "0.2.158"
+version = "0.2.159"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439"
+checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5"
[[package]]
name = "libloading"
@@ -556,9 +556,12 @@ dependencies = [
[[package]]
name = "once_cell"
-version = "1.19.0"
+version = "1.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
+checksum = "82881c4be219ab5faaf2ad5e5e5ecdff8c66bd7402ca3160975c93b24961afd1"
+dependencies = [
+ "portable-atomic",
+]
[[package]]
name = "oorandom"
@@ -574,9 +577,9 @@ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
[[package]]
name = "plotters"
-version = "0.3.6"
+version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a15b6eccb8484002195a3e44fe65a4ce8e93a625797a063735536fd59cb01cf3"
+checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
dependencies = [
"num-traits",
"plotters-backend",
@@ -587,20 +590,26 @@ dependencies = [
[[package]]
name = "plotters-backend"
-version = "0.3.6"
+version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "414cec62c6634ae900ea1c56128dfe87cf63e7caece0852ec76aba307cebadb7"
+checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
[[package]]
name = "plotters-svg"
-version = "0.3.6"
+version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "81b30686a7d9c3e010b84284bdd26a29f2138574f52f5eb6f794fc0ad924e705"
+checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
dependencies = [
"plotters-backend",
]
[[package]]
+name = "portable-atomic"
+version = "1.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
+
+[[package]]
name = "ppv-lite86"
version = "0.2.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -616,7 +625,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "479cf940fbbb3426c32c5d5176f62ad57549a0bb84773423ba8be9d089f5faba"
dependencies = [
"proc-macro2",
- "syn 2.0.77",
+ "syn 2.0.79",
]
[[package]]
@@ -713,9 +722,9 @@ dependencies = [
[[package]]
name = "regex"
-version = "1.10.6"
+version = "1.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
+checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8"
dependencies = [
"aho-corasick",
"memchr",
@@ -725,9 +734,9 @@ dependencies = [
[[package]]
name = "regex-automata"
-version = "0.4.7"
+version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
+checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
dependencies = [
"aho-corasick",
"memchr",
@@ -736,9 +745,9 @@ dependencies = [
[[package]]
name = "regex-syntax"
-version = "0.8.4"
+version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
+checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
[[package]]
name = "rustc-hash"
@@ -748,9 +757,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
[[package]]
name = "rustix"
-version = "0.38.35"
+version = "0.38.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a85d50532239da68e9addb745ba38ff4612a242c1c7ceea689c4bc7c2f43c36f"
+checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811"
dependencies = [
"bitflags 2.6.0",
"errno",
@@ -776,29 +785,29 @@ dependencies = [
[[package]]
name = "serde"
-version = "1.0.209"
+version = "1.0.210"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09"
+checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
-version = "1.0.209"
+version = "1.0.210"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170"
+checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.77",
+ "syn 2.0.79",
]
[[package]]
name = "serde_json"
-version = "1.0.127"
+version = "1.0.128"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8043c06d9f82bd7271361ed64f415fe5e12a77fdb52e573e7f06a516dea329ad"
+checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8"
dependencies = [
"itoa",
"memchr",
@@ -831,9 +840,9 @@ dependencies = [
[[package]]
name = "syn"
-version = "2.0.77"
+version = "2.0.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9f35bcdf61fd8e7be6caf75f429fdca8beb3ed76584befb503b1569faee373ed"
+checksum = "89132cd0bf050864e1d38dc3bbc07a0eb8e7530af26344d3d2bbbef83499f590"
dependencies = [
"proc-macro2",
"quote",
@@ -842,22 +851,22 @@ dependencies = [
[[package]]
name = "thiserror"
-version = "1.0.63"
+version = "1.0.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
+checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
-version = "1.0.63"
+version = "1.0.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
+checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.77",
+ "syn 2.0.79",
]
[[package]]
@@ -873,7 +882,7 @@ dependencies = [
[[package]]
name = "tor-c-equix"
version = "0.2.0"
-source = "git+https://gitlab.torproject.org/tpo/core/tor.git#17a70ab7c53b31a51ce615f7ad280c7df32e8701"
+source = "git+https://gitlab.torproject.org/tpo/core/tor.git#364b8c292567fc2fada7639e50874fc719d7ce09"
dependencies = [
"bindgen",
"cc",
@@ -887,9 +896,9 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
[[package]]
name = "unicode-ident"
-version = "1.0.12"
+version = "1.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
+checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
[[package]]
name = "version_check"
@@ -905,7 +914,7 @@ checksum = "d674d135b4a8c1d7e813e2f8d1c9a58308aee4a680323066025e53132218bd91"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.77",
+ "syn 2.0.79",
]
[[package]]
@@ -946,7 +955,7 @@ dependencies = [
"once_cell",
"proc-macro2",
"quote",
- "syn 2.0.77",
+ "syn 2.0.79",
"wasm-bindgen-shared",
]
@@ -968,7 +977,7 @@ checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.77",
+ "syn 2.0.79",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
@@ -1110,5 +1119,5 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.77",
+ "syn 2.0.79",
]
diff --git a/crates/fs-mistrust/Cargo.toml b/crates/fs-mistrust/Cargo.toml
index d9656fc70..abbd257b7 100644
--- a/crates/fs-mistrust/Cargo.toml
+++ b/crates/fs-mistrust/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "fs-mistrust"
-version = "0.7.13"
+version = "0.8.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
diff --git a/crates/fslock-guard/Cargo.toml b/crates/fslock-guard/Cargo.toml
index 00613b3e7..40765900d 100644
--- a/crates/fslock-guard/Cargo.toml
+++ b/crates/fslock-guard/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "fslock-guard"
-version = "0.1.5"
+version = "0.2.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
@@ -20,7 +20,7 @@ fslock = { version = "0.2.0", package = "fslock-arti-fork" }
thiserror = "1"
[dev-dependencies]
-test-temp-dir = { version = "0.2.1", path = "../test-temp-dir" }
+test-temp-dir = { version = "0.3.0", path = "../test-temp-dir" }
[target.'cfg(windows)'.dependencies.winapi]
version = "^0.3.8"
diff --git a/crates/hashx/Cargo.toml b/crates/hashx/Cargo.toml
index 5b5645606..7ab1f172d 100644
--- a/crates/hashx/Cargo.toml
+++ b/crates/hashx/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "hashx"
-version = "0.1.5"
+version = "0.2.0"
authors = ["The Tor Project, Inc.", "Micah Elizabeth Scott <[email protected]>"]
edition = "2021"
rust-version = "1.77"
diff --git a/crates/hashx/bench/Cargo.lock b/crates/hashx/bench/Cargo.lock
index 75ae42f62..7ca38c8ef 100644
--- a/crates/hashx/bench/Cargo.lock
+++ b/crates/hashx/bench/Cargo.lock
@@ -31,9 +31,9 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
[[package]]
name = "autocfg"
-version = "1.3.0"
+version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
+checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
[[package]]
name = "bindgen"
@@ -54,7 +54,7 @@ dependencies = [
"regex",
"rustc-hash",
"shlex",
- "syn 2.0.77",
+ "syn 2.0.79",
"which",
]
@@ -108,9 +108,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
[[package]]
name = "cc"
-version = "1.1.15"
+version = "1.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "57b6a275aa2903740dc87da01c62040406b8812552e97129a63ea8850a17c6e6"
+checksum = "3bbb537bb4a30b90362caddba8f360c0a56bc13d3a5570028e7197204cb54a17"
dependencies = [
"jobserver",
"libc",
@@ -172,18 +172,18 @@ dependencies = [
[[package]]
name = "clap"
-version = "4.5.16"
+version = "4.5.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ed6719fffa43d0d87e5fd8caeab59be1554fb028cd30edc88fc4369b17971019"
+checksum = "b0956a43b323ac1afaffc053ed5c4b7c1f1800bacd1683c353aabbb752515dd3"
dependencies = [
"clap_builder",
]
[[package]]
name = "clap_builder"
-version = "4.5.15"
+version = "4.5.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "216aec2b177652e3846684cbfe25c9964d18ec45234f0f5da5157b207ed1aab6"
+checksum = "4d72166dd41634086d5803a47eb71ae740e61d84709c36f3c34110173db3961b"
dependencies = [
"anstyle",
"clap_lex",
@@ -377,7 +377,7 @@ dependencies = [
[[package]]
name = "hashx"
-version = "0.1.5"
+version = "0.2.0"
dependencies = [
"arrayvec",
"blake2",
@@ -484,9 +484,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]]
name = "libc"
-version = "0.2.158"
+version = "0.2.159"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439"
+checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5"
[[package]]
name = "libloading"
@@ -552,9 +552,12 @@ dependencies = [
[[package]]
name = "once_cell"
-version = "1.19.0"
+version = "1.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
+checksum = "82881c4be219ab5faaf2ad5e5e5ecdff8c66bd7402ca3160975c93b24961afd1"
+dependencies = [
+ "portable-atomic",
+]
[[package]]
name = "oorandom"
@@ -570,9 +573,9 @@ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
[[package]]
name = "plotters"
-version = "0.3.6"
+version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a15b6eccb8484002195a3e44fe65a4ce8e93a625797a063735536fd59cb01cf3"
+checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
dependencies = [
"num-traits",
"plotters-backend",
@@ -583,20 +586,26 @@ dependencies = [
[[package]]
name = "plotters-backend"
-version = "0.3.6"
+version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "414cec62c6634ae900ea1c56128dfe87cf63e7caece0852ec76aba307cebadb7"
+checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
[[package]]
name = "plotters-svg"
-version = "0.3.6"
+version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "81b30686a7d9c3e010b84284bdd26a29f2138574f52f5eb6f794fc0ad924e705"
+checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
dependencies = [
"plotters-backend",
]
[[package]]
+name = "portable-atomic"
+version = "1.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
+
+[[package]]
name = "ppv-lite86"
version = "0.2.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -612,7 +621,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "479cf940fbbb3426c32c5d5176f62ad57549a0bb84773423ba8be9d089f5faba"
dependencies = [
"proc-macro2",
- "syn 2.0.77",
+ "syn 2.0.79",
]
[[package]]
@@ -709,9 +718,9 @@ dependencies = [
[[package]]
name = "regex"
-version = "1.10.6"
+version = "1.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
+checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8"
dependencies = [
"aho-corasick",
"memchr",
@@ -721,9 +730,9 @@ dependencies = [
[[package]]
name = "regex-automata"
-version = "0.4.7"
+version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
+checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
dependencies = [
"aho-corasick",
"memchr",
@@ -732,9 +741,9 @@ dependencies = [
[[package]]
name = "regex-syntax"
-version = "0.8.4"
+version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
+checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
[[package]]
name = "rustc-hash"
@@ -744,9 +753,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
[[package]]
name = "rustix"
-version = "0.38.35"
+version = "0.38.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a85d50532239da68e9addb745ba38ff4612a242c1c7ceea689c4bc7c2f43c36f"
+checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811"
dependencies = [
"bitflags 2.6.0",
"errno",
@@ -772,29 +781,29 @@ dependencies = [
[[package]]
name = "serde"
-version = "1.0.209"
+version = "1.0.210"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09"
+checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
-version = "1.0.209"
+version = "1.0.210"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170"
+checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.77",
+ "syn 2.0.79",
]
[[package]]
name = "serde_json"
-version = "1.0.127"
+version = "1.0.128"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8043c06d9f82bd7271361ed64f415fe5e12a77fdb52e573e7f06a516dea329ad"
+checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8"
dependencies = [
"itoa",
"memchr",
@@ -827,9 +836,9 @@ dependencies = [
[[package]]
name = "syn"
-version = "2.0.77"
+version = "2.0.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9f35bcdf61fd8e7be6caf75f429fdca8beb3ed76584befb503b1569faee373ed"
+checksum = "89132cd0bf050864e1d38dc3bbc07a0eb8e7530af26344d3d2bbbef83499f590"
dependencies = [
"proc-macro2",
"quote",
@@ -838,22 +847,22 @@ dependencies = [
[[package]]
name = "thiserror"
-version = "1.0.63"
+version = "1.0.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
+checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
-version = "1.0.63"
+version = "1.0.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
+checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.77",
+ "syn 2.0.79",
]
[[package]]
@@ -869,7 +878,7 @@ dependencies = [
[[package]]
name = "tor-c-equix"
version = "0.2.0"
-source = "git+https://gitlab.torproject.org/tpo/core/tor.git#17a70ab7c53b31a51ce615f7ad280c7df32e8701"
+source = "git+https://gitlab.torproject.org/tpo/core/tor.git#364b8c292567fc2fada7639e50874fc719d7ce09"
dependencies = [
"bindgen",
"cc",
@@ -883,9 +892,9 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
[[package]]
name = "unicode-ident"
-version = "1.0.12"
+version = "1.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
+checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
[[package]]
name = "version_check"
@@ -931,7 +940,7 @@ dependencies = [
"once_cell",
"proc-macro2",
"quote",
- "syn 2.0.77",
+ "syn 2.0.79",
"wasm-bindgen-shared",
]
@@ -953,7 +962,7 @@ checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.77",
+ "syn 2.0.79",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
@@ -1095,5 +1104,5 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.77",
+ "syn 2.0.79",
]
diff --git a/crates/oneshot-fused-workaround/Cargo.toml b/crates/oneshot-fused-workaround/Cargo.toml
index 24336fe12..17b2d85e7 100644
--- a/crates/oneshot-fused-workaround/Cargo.toml
+++ b/crates/oneshot-fused-workaround/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "oneshot-fused-workaround"
-version = "0.1.0"
+version = "0.2.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
diff --git a/crates/retry-error/Cargo.toml b/crates/retry-error/Cargo.toml
index 907205e6c..19d7997e7 100644
--- a/crates/retry-error/Cargo.toml
+++ b/crates/retry-error/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "retry-error"
-version = "0.5.4"
+version = "0.6.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
diff --git a/crates/safelog/Cargo.toml b/crates/safelog/Cargo.toml
index 485e92e4a..edaa0558b 100644
--- a/crates/safelog/Cargo.toml
+++ b/crates/safelog/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "safelog"
-version = "0.3.8"
+version = "0.4.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
diff --git a/crates/slotmap-careful/Cargo.toml b/crates/slotmap-careful/Cargo.toml
index a35c5991f..9aaafa307 100644
--- a/crates/slotmap-careful/Cargo.toml
+++ b/crates/slotmap-careful/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "slotmap-careful"
-version = "0.1.0"
+version = "0.2.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
diff --git a/crates/test-temp-dir/Cargo.toml b/crates/test-temp-dir/Cargo.toml
index 38d670635..aa71c347f 100644
--- a/crates/test-temp-dir/Cargo.toml
+++ b/crates/test-temp-dir/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "test-temp-dir"
-version = "0.2.2"
+version = "0.3.0"
# TODO make this 1.x. Let's say, do this in December 2024 or January 2025
authors = ["The Tor Project, Inc.", "Ian Jackson <[email protected]>"]
edition = "2021"
diff --git a/crates/tor-async-utils/Cargo.toml b/crates/tor-async-utils/Cargo.toml
index c61e024f3..b41f93cd4 100644
--- a/crates/tor-async-utils/Cargo.toml
+++ b/crates/tor-async-utils/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-async-utils"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -15,7 +15,7 @@ repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
educe = "0.4.6"
futures = "0.3.14"
-oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.1.0" }
+oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.2.0" }
pin-project = "1"
postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] }
void = "1"
@@ -23,8 +23,8 @@ void = "1"
[dev-dependencies]
futures-await-test = "0.3.0"
tokio = { version = "1.7", features = ["macros", "net", "rt", "rt-multi-thread", "time"] }
-tor-rtcompat = { version = "0.22.0", path = "../tor-rtcompat" }
-tor-rtmock = { path = "../tor-rtmock", version = "0.22.0" }
+tor-rtcompat = { version = "0.23.0", path = "../tor-rtcompat" }
+tor-rtmock = { path = "../tor-rtmock", version = "0.23.0" }
[features]
full = ["oneshot-fused-workaround/full"]
diff --git a/crates/tor-basic-utils/Cargo.toml b/crates/tor-basic-utils/Cargo.toml
index 9469734e9..6d684d3e3 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.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
diff --git a/crates/tor-bytes/Cargo.toml b/crates/tor-bytes/Cargo.toml
index e8db6ca4b..6e29c7bee 100644
--- a/crates/tor-bytes/Cargo.toml
+++ b/crates/tor-bytes/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-bytes"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -16,10 +16,10 @@ bytes = "1"
derive-deftly = "0.14"
digest = { version = "0.10.0", features = ["subtle", "mac"] }
educe = "0.4.6"
-safelog = { path = "../safelog", version = "0.3.6" }
+safelog = { path = "../safelog", version = "0.4.0" }
thiserror = "1"
-tor-error = { path = "../tor-error", version = "0.22.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.22.0" }
+tor-error = { path = "../tor-error", version = "0.23.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.23.0" }
zeroize = "1"
[dev-dependencies]
diff --git a/crates/tor-cell/Cargo.toml b/crates/tor-cell/Cargo.toml
index 6902a04c5..d889911a9 100644
--- a/crates/tor-cell/Cargo.toml
+++ b/crates/tor-cell/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-cell"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -40,21 +40,21 @@ __is_experimental = []
[dependencies]
bitflags = "2"
bytes = "1"
-caret = { path = "../caret", version = "0.4.5" }
+caret = { path = "../caret", version = "0.5.0" }
derive_more = { version = "1.0.0", features = ["full"] }
educe = "0.4.6"
paste = "1"
rand = "0.8"
smallvec = "1.10"
thiserror = "1"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-bytes = { path = "../tor-bytes", version = "0.22.0" }
-tor-cert = { path = "../tor-cert", version = "0.22.0" }
-tor-error = { path = "../tor-error", version = "0.22.0" }
-tor-hscrypto = { path = "../tor-hscrypto", version = "0.22.0", optional = true }
-tor-linkspec = { path = "../tor-linkspec", version = "0.22.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.22.0" }
-tor-units = { path = "../tor-units", version = "0.22.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.23.0" }
+tor-cert = { path = "../tor-cert", version = "0.23.0" }
+tor-error = { path = "../tor-error", version = "0.23.0" }
+tor-hscrypto = { path = "../tor-hscrypto", version = "0.23.0", optional = true }
+tor-linkspec = { path = "../tor-linkspec", version = "0.23.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.23.0" }
+tor-units = { path = "../tor-units", version = "0.23.0" }
[dev-dependencies]
hex = "0.4"
diff --git a/crates/tor-cert/Cargo.toml b/crates/tor-cert/Cargo.toml
index a064b2580..90ff6b48c 100644
--- a/crates/tor-cert/Cargo.toml
+++ b/crates/tor-cert/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-cert"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -19,14 +19,14 @@ full = ["caret/full", "tor-bytes/full", "tor-checkable/full", "tor-llcrypto/full
__is_experimental = []
[dependencies]
-caret = { path = "../caret", version = "0.4.5" }
+caret = { path = "../caret", version = "0.5.0" }
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti", optional = true }
derive_more = { version = "1.0.0", features = ["full"] }
digest = "0.10.0"
thiserror = "1"
-tor-bytes = { path = "../tor-bytes", version = "0.22.0" }
-tor-checkable = { path = "../tor-checkable", version = "0.22.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.22.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.23.0" }
+tor-checkable = { path = "../tor-checkable", version = "0.23.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.23.0" }
[dev-dependencies]
base64ct = "1.5.1"
diff --git a/crates/tor-chanmgr/Cargo.toml b/crates/tor-chanmgr/Cargo.toml
index de5186eb0..b3e096683 100644
--- a/crates/tor-chanmgr/Cargo.toml
+++ b/crates/tor-chanmgr/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-chanmgr"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -45,26 +45,26 @@ derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = { version = "1.0.0", features = ["full"] }
educe = "0.4.6"
futures = "0.3.14"
-oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.1.0" }
+oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.2.0" }
postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] }
rand = "0.8"
-safelog = { path = "../safelog", version = "0.3.6" }
+safelog = { path = "../safelog", version = "0.4.0" }
serde = { version = "1.0.103", features = ["derive"] }
thiserror = "1"
-tor-async-utils = { version = "0.22.0", path = "../tor-async-utils" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-cell = { path = "../tor-cell", version = "0.22.0" }
-tor-config = { path = "../tor-config", version = "0.22.0" }
-tor-error = { path = "../tor-error", version = "0.22.0", features = ["tracing"] }
-tor-linkspec = { path = "../tor-linkspec", version = "0.22.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.22.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.22.0" }
-tor-proto = { path = "../tor-proto", version = "0.22.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0" }
-tor-socksproto = { path = "../tor-socksproto", version = "0.22.0", default-features = false, features = [
+tor-async-utils = { version = "0.23.0", path = "../tor-async-utils" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-cell = { path = "../tor-cell", version = "0.23.0" }
+tor-config = { path = "../tor-config", version = "0.23.0" }
+tor-error = { path = "../tor-error", version = "0.23.0", features = ["tracing"] }
+tor-linkspec = { path = "../tor-linkspec", version = "0.23.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.23.0" }
+tor-netdir = { path = "../tor-netdir", version = "0.23.0" }
+tor-proto = { path = "../tor-proto", version = "0.23.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0" }
+tor-socksproto = { path = "../tor-socksproto", version = "0.23.0", default-features = false, features = [
"client-handshake",
] }
-tor-units = { path = "../tor-units", version = "0.22.0" }
+tor-units = { path = "../tor-units", version = "0.23.0" }
tracing = "0.1.36"
void = "1"
@@ -73,10 +73,10 @@ float_eq = "1.0.0"
futures-await-test = "0.3.0"
hex-literal = "0.4"
itertools = "0.13.0"
-tor-cell = { path = "../tor-cell", version = "0.22.0", features = ["testing"] }
-tor-netdir = { path = "../tor-netdir", version = "0.22.0", features = ["testing"] }
-tor-proto = { path = "../tor-proto", version = "0.22.0", features = ["testing"] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0", features = ["tokio", "native-tls"] }
-tor-rtmock = { path = "../tor-rtmock", version = "0.22.0" }
+tor-cell = { path = "../tor-cell", version = "0.23.0", features = ["testing"] }
+tor-netdir = { path = "../tor-netdir", version = "0.23.0", features = ["testing"] }
+tor-proto = { path = "../tor-proto", version = "0.23.0", features = ["testing"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0", features = ["tokio", "native-tls"] }
+tor-rtmock = { path = "../tor-rtmock", version = "0.23.0" }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-checkable/Cargo.toml b/crates/tor-checkable/Cargo.toml
index db89b28ea..88d9605a6 100644
--- a/crates/tor-checkable/Cargo.toml
+++ b/crates/tor-checkable/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-checkable"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -21,7 +21,7 @@ __is_experimental = []
humantime = "2"
signature = "2"
thiserror = "1"
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.22.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.23.0" }
[package.metadata.docs.rs]
all-features = true
[dev-dependencies]
diff --git a/crates/tor-circmgr/Cargo.toml b/crates/tor-circmgr/Cargo.toml
index 90d4e37ea..5c676c6a1 100644
--- a/crates/tor-circmgr/Cargo.toml
+++ b/crates/tor-circmgr/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-circmgr"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -72,29 +72,29 @@ futures = "0.3.14"
humantime-serde = "1.1.1"
itertools = "0.13.0"
once_cell = "1"
-oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.1.0" }
+oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.2.0" }
pin-project = "1"
rand = "0.8"
-retry-error = { path = "../retry-error", version = "0.5.2" }
-safelog = { path = "../safelog", version = "0.3.6" }
+retry-error = { path = "../retry-error", version = "0.6.0" }
+safelog = { path = "../safelog", version = "0.4.0" }
serde = { version = "1.0.103", features = ["derive"] }
static_assertions = "1"
thiserror = "1"
-tor-async-utils = { version = "0.22.0", path = "../tor-async-utils" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-chanmgr = { path = "../tor-chanmgr", version = "0.22.0" }
-tor-config = { path = "../tor-config", version = "0.22.0" }
-tor-error = { path = "../tor-error", version = "0.22.0", features = ["tracing"] }
-tor-geoip = { path = "../tor-geoip", version = "0.22.0", optional = true }
-tor-guardmgr = { path = "../tor-guardmgr", version = "0.22.0" }
-tor-linkspec = { path = "../tor-linkspec", version = "0.22.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.22.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.22.0" }
-tor-persist = { path = "../tor-persist", version = "0.22.0" }
-tor-proto = { path = "../tor-proto", version = "0.22.0" }
-tor-protover = { path = "../tor-protover", version = "0.22.0" }
-tor-relay-selection = { path = "../tor-relay-selection", version = "0.22.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0" }
+tor-async-utils = { version = "0.23.0", path = "../tor-async-utils" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-chanmgr = { path = "../tor-chanmgr", version = "0.23.0" }
+tor-config = { path = "../tor-config", version = "0.23.0" }
+tor-error = { path = "../tor-error", version = "0.23.0", features = ["tracing"] }
+tor-geoip = { path = "../tor-geoip", version = "0.23.0", optional = true }
+tor-guardmgr = { path = "../tor-guardmgr", version = "0.23.0" }
+tor-linkspec = { path = "../tor-linkspec", version = "0.23.0" }
+tor-netdir = { path = "../tor-netdir", version = "0.23.0" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.23.0" }
+tor-persist = { path = "../tor-persist", version = "0.23.0" }
+tor-proto = { path = "../tor-proto", version = "0.23.0" }
+tor-protover = { path = "../tor-protover", version = "0.23.0" }
+tor-relay-selection = { path = "../tor-relay-selection", version = "0.23.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0" }
tracing = "0.1.36"
visibility = { version = "0.1.0", optional = true }
void = "1.0"
@@ -103,11 +103,11 @@ weak-table = "0.3.0"
[dev-dependencies]
futures-await-test = "0.3.0"
hex = "0.4"
-tor-guardmgr = { path = "../tor-guardmgr", version = "0.22.0", features = ["testing", "vanguards"] }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.22.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.22.0", features = ["testing"] }
-tor-persist = { path = "../tor-persist", version = "0.22.0", features = ["testing"] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0", features = ["tokio", "native-tls"] }
-tor-rtmock = { path = "../tor-rtmock", version = "0.22.0" }
+tor-guardmgr = { path = "../tor-guardmgr", version = "0.23.0", features = ["testing", "vanguards"] }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.23.0" }
+tor-netdir = { path = "../tor-netdir", version = "0.23.0", features = ["testing"] }
+tor-persist = { path = "../tor-persist", version = "0.23.0", features = ["testing"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0", features = ["tokio", "native-tls"] }
+tor-rtmock = { path = "../tor-rtmock", version = "0.23.0" }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-config/Cargo.toml b/crates/tor-config/Cargo.toml
index a02e2c216..203ccc034 100644
--- a/crates/tor-config/Cargo.toml
+++ b/crates/tor-config/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-config"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -34,7 +34,7 @@ directories = { version = "5", optional = true }
educe = "0.4.6"
either = "1"
figment = { version = "0.10.18", features = ["toml"] }
-fs-mistrust = { path = "../fs-mistrust", version = "0.7.9" }
+fs-mistrust = { path = "../fs-mistrust", version = "0.8.0" }
futures = "0.3.14"
itertools = "0.13.0"
notify = { version = "6.0", default-features = false, features = ["macos_kqueue"] }
@@ -49,9 +49,9 @@ shellexpand = { version = "3.0", optional = true }
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "1"
toml = "0.8.8"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-error = { path = "../tor-error", version = "0.22.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-error = { path = "../tor-error", version = "0.23.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0" }
tracing = "0.1.36"
void = "1"
@@ -60,9 +60,9 @@ dirs = "5.0.0"
rmp-serde = "1"
serde_json = "1.0.50"
tempfile = "3"
-test-temp-dir = { version = "0.2.1", path = "../test-temp-dir" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0", features = ["tokio", "native-tls"] }
-tor-rtmock = { path = "../tor-rtmock", version = "0.22.0" }
+test-temp-dir = { version = "0.3.0", path = "../test-temp-dir" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0", features = ["tokio", "native-tls"] }
+tor-rtmock = { path = "../tor-rtmock", version = "0.23.0" }
tracing-test = "0.2.4"
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-congestion/Cargo.toml b/crates/tor-congestion/Cargo.toml
index b4158c3f7..02e0581fa 100644
--- a/crates/tor-congestion/Cargo.toml
+++ b/crates/tor-congestion/Cargo.toml
@@ -16,9 +16,9 @@ publish = false
[dependencies]
thiserror = "1"
-tor-error = { path = "../tor-error", version = "0.22.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.22.0" }
-tor-units = { path = "../tor-units", version = "0.22.0" }
+tor-error = { path = "../tor-error", version = "0.23.0" }
+tor-netdir = { path = "../tor-netdir", version = "0.23.0" }
+tor-units = { path = "../tor-units", version = "0.23.0" }
[features]
full = ["tor-error/full", "tor-netdir/full", "tor-units/full"]
diff --git a/crates/tor-consdiff/Cargo.toml b/crates/tor-consdiff/Cargo.toml
index 453e70080..d95fc938d 100644
--- a/crates/tor-consdiff/Cargo.toml
+++ b/crates/tor-consdiff/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-consdiff"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -23,6 +23,6 @@ __is_experimental = []
digest = "0.10.0"
hex = "0.4"
thiserror = "1"
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.22.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.23.0" }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-dirclient/Cargo.toml b/crates/tor-dirclient/Cargo.toml
index f972b3c93..bc9803da6 100644
--- a/crates/tor-dirclient/Cargo.toml
+++ b/crates/tor-dirclient/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-dirclient"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -55,19 +55,19 @@ httpdate = "1.0"
itertools = "0.13.0"
memchr = "2.5"
thiserror = "1"
-tor-circmgr = { path = "../tor-circmgr", version = "0.22.0" }
-tor-error = { path = "../tor-error", version = "0.22.0" }
-tor-hscrypto = { path = "../tor-hscrypto", version = "0.22.0", optional = true }
-tor-linkspec = { path = "../tor-linkspec", version = "0.22.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.22.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.22.0" }
-tor-proto = { path = "../tor-proto", version = "0.22.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0" }
+tor-circmgr = { path = "../tor-circmgr", version = "0.23.0" }
+tor-error = { path = "../tor-error", version = "0.23.0" }
+tor-hscrypto = { path = "../tor-hscrypto", version = "0.23.0", optional = true }
+tor-linkspec = { path = "../tor-linkspec", version = "0.23.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.23.0" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.23.0" }
+tor-proto = { path = "../tor-proto", version = "0.23.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0" }
tracing = "0.1.36"
[dev-dependencies]
futures-await-test = "0.3.0"
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0", features = ["tokio", "native-tls"] }
-tor-rtmock = { path = "../tor-rtmock", version = "0.22.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0", features = ["tokio", "native-tls"] }
+tor-rtmock = { path = "../tor-rtmock", version = "0.23.0" }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-dirmgr/Cargo.toml b/crates/tor-dirmgr/Cargo.toml
index 6f846acec..519aa742b 100644
--- a/crates/tor-dirmgr/Cargo.toml
+++ b/crates/tor-dirmgr/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-dirmgr"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -65,7 +65,7 @@ derive_more = { version = "1.0.0", features = ["full"] }
digest = "0.10.0"
educe = "0.4.6"
event-listener = "5"
-fs-mistrust = { path = "../fs-mistrust", version = "0.7.9" }
+fs-mistrust = { path = "../fs-mistrust", version = "0.8.0" }
fslock = { version = "0.2.0" }
futures = "0.3.14"
hex = "0.4"
@@ -74,34 +74,34 @@ humantime-serde = "1.1.1"
itertools = "0.13.0"
memmap2 = { version = "0.9.0", optional = true }
once_cell = "1"
-oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.1.0" }
+oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.2.0" }
paste = "1"
postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] }
rand = "0.8"
rusqlite = { version = "0.32.1", features = ["time"] }
-safelog = { path = "../safelog", version = "0.3.6" }
+safelog = { path = "../safelog", version = "0.4.0" }
scopeguard = "1"
serde = { version = "1.0.103", features = ["derive"] }
signature = "2"
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "1"
time = { version = "0.3.20", features = ["formatting", "parsing"] }
-tor-async-utils = { version = "0.22.0", path = "../tor-async-utils" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-checkable = { path = "../tor-checkable", version = "0.22.0" }
-tor-circmgr = { path = "../tor-circmgr", version = "0.22.0" }
-tor-config = { path = "../tor-config", version = "0.22.0" }
-tor-consdiff = { path = "../tor-consdiff", version = "0.22.0" }
-tor-dirclient = { path = "../tor-dirclient", version = "0.22.0", default-features = false }
-tor-error = { path = "../tor-error", version = "0.22.0", features = ["tracing"] }
-tor-geoip = { path = "../tor-geoip", version = "0.22.0", optional = true }
-tor-guardmgr = { path = "../tor-guardmgr", version = "0.22.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.22.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.22.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.22.0" }
-tor-persist = { path = "../tor-persist", version = "0.22.0" }
-tor-proto = { path = "../tor-proto", version = "0.22.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0" }
+tor-async-utils = { version = "0.23.0", path = "../tor-async-utils" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-checkable = { path = "../tor-checkable", version = "0.23.0" }
+tor-circmgr = { path = "../tor-circmgr", version = "0.23.0" }
+tor-config = { path = "../tor-config", version = "0.23.0" }
+tor-consdiff = { path = "../tor-consdiff", version = "0.23.0" }
+tor-dirclient = { path = "../tor-dirclient", version = "0.23.0", default-features = false }
+tor-error = { path = "../tor-error", version = "0.23.0", features = ["tracing"] }
+tor-geoip = { path = "../tor-geoip", version = "0.23.0", optional = true }
+tor-guardmgr = { path = "../tor-guardmgr", version = "0.23.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.23.0" }
+tor-netdir = { path = "../tor-netdir", version = "0.23.0" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.23.0" }
+tor-persist = { path = "../tor-persist", version = "0.23.0" }
+tor-proto = { path = "../tor-proto", version = "0.23.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0" }
tracing = "0.1.36"
[dev-dependencies]
@@ -110,9 +110,9 @@ filetime = "0.2"
float_eq = "1.0.0"
hex-literal = "0.4"
tempfile = "3"
-tor-linkspec = { path = "../tor-linkspec", version = "0.22.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0", features = ["tokio", "native-tls"] }
-tor-rtmock = { path = "../tor-rtmock", version = "0.22.0" }
+tor-linkspec = { path = "../tor-linkspec", version = "0.23.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0", features = ["tokio", "native-tls"] }
+tor-rtmock = { path = "../tor-rtmock", version = "0.23.0" }
tracing-test = "0.2.4"
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-error/Cargo.toml b/crates/tor-error/Cargo.toml
index 87c5c3c65..0f6a7213b 100644
--- a/crates/tor-error/Cargo.toml
+++ b/crates/tor-error/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-error"
-version = "0.22.0"
+version = "0.23.0"
authors = ["Ian Jackson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -31,7 +31,7 @@ derive_more = { version = "1.0.0", features = ["full"] }
futures = "0.3"
once_cell = "1"
paste = "1"
-retry-error = { path = "../retry-error", version = "0.5.2" } # WRONG should be 0.4.3
+retry-error = { path = "../retry-error", version = "0.6.0" } # WRONG should be 0.4.3
static_assertions = { version = "1", optional = true }
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "1"
diff --git a/crates/tor-geoip/Cargo.toml b/crates/tor-geoip/Cargo.toml
index 424e33a1f..659f55144 100644
--- a/crates/tor-geoip/Cargo.toml
+++ b/crates/tor-geoip/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-geoip"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "eta <[email protected]>"]
edition = "2021"
rust-version = "1.77"
diff --git a/crates/tor-guardmgr/Cargo.toml b/crates/tor-guardmgr/Cargo.toml
index c1d8e8374..4b211cb08 100644
--- a/crates/tor-guardmgr/Cargo.toml
+++ b/crates/tor-guardmgr/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-guardmgr"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -65,42 +65,42 @@ humantime = "2"
humantime-serde = "1.1.1"
itertools = "0.13.0"
num_enum = "0.7"
-oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.1.0" }
+oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.2.0" }
pin-project = "1"
postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] }
rand = "0.8"
-safelog = { path = "../safelog", version = "0.3.6" }
+safelog = { path = "../safelog", version = "0.4.0" }
serde = { version = "1.0.103", features = ["derive"] }
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "1"
-tor-async-utils = { version = "0.22.0", path = "../tor-async-utils" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-config = { path = "../tor-config", version = "0.22.0" }
-tor-error = { path = "../tor-error", version = "0.22.0" }
-tor-linkspec = { path = "../tor-linkspec", version = "0.22.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.22.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.22.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.22.0" } # for address pattern
-tor-persist = { path = "../tor-persist", version = "0.22.0" }
-tor-proto = { path = "../tor-proto", version = "0.22.0" }
-tor-protover = { path = "../tor-protover", version = "0.22.0", optional = true }
-tor-relay-selection = { path = "../tor-relay-selection", version = "0.22.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0" }
-tor-rtmock = { path = "../tor-rtmock", version = "0.22.0", optional = true }
-tor-units = { path = "../tor-units", version = "0.22.0" }
+tor-async-utils = { version = "0.23.0", path = "../tor-async-utils" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-config = { path = "../tor-config", version = "0.23.0" }
+tor-error = { path = "../tor-error", version = "0.23.0" }
+tor-linkspec = { path = "../tor-linkspec", version = "0.23.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.23.0" }
+tor-netdir = { path = "../tor-netdir", version = "0.23.0" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.23.0" } # for address pattern
+tor-persist = { path = "../tor-persist", version = "0.23.0" }
+tor-proto = { path = "../tor-proto", version = "0.23.0" }
+tor-protover = { path = "../tor-protover", version = "0.23.0", optional = true }
+tor-relay-selection = { path = "../tor-relay-selection", version = "0.23.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0" }
+tor-rtmock = { path = "../tor-rtmock", version = "0.23.0", optional = true }
+tor-units = { path = "../tor-units", version = "0.23.0" }
tracing = "0.1.36"
[dev-dependencies]
float_eq = "1.0.0"
-fs-mistrust = { path = "../fs-mistrust", version = "0.7.9" }
+fs-mistrust = { path = "../fs-mistrust", version = "0.8.0" }
serde_json = "1.0.50"
tempfile = "3"
toml = "0.8.8"
-tor-netdir = { path = "../tor-netdir", version = "0.22.0", features = ["testing"] }
-tor-netdoc = { path = "../tor-netdoc", version = "0.22.0" }
-tor-persist = { path = "../tor-persist", version = "0.22.0", features = ["testing"] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0", features = ["tokio", "native-tls"] }
-tor-rtmock = { path = "../tor-rtmock", version = "0.22.0" }
+tor-netdir = { path = "../tor-netdir", version = "0.23.0", features = ["testing"] }
+tor-netdoc = { path = "../tor-netdoc", version = "0.23.0" }
+tor-persist = { path = "../tor-persist", version = "0.23.0", features = ["testing"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0", features = ["tokio", "native-tls"] }
+tor-rtmock = { path = "../tor-rtmock", version = "0.23.0" }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-hsclient/Cargo.toml b/crates/tor-hsclient/Cargo.toml
index e930245d2..59d6b174a 100644
--- a/crates/tor-hsclient/Cargo.toml
+++ b/crates/tor-hsclient/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-hsclient"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -49,45 +49,45 @@ educe = "0.4.6"
either = "1"
futures = "0.3.14"
itertools = "0.13.0"
-oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.1.0" }
+oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.2.0" }
postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] }
rand = "0.8"
-retry-error = { path = "../retry-error", version = "0.5.2" }
-safelog = { path = "../safelog", version = "0.3.6" }
+retry-error = { path = "../retry-error", version = "0.6.0" }
+safelog = { path = "../safelog", version = "0.4.0" }
slotmap = "1.0.6"
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "1"
-tor-async-utils = { version = "0.22.0", path = "../tor-async-utils" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-bytes = { path = "../tor-bytes", version = "0.22.0" }
-tor-cell = { path = "../tor-cell", version = "0.22.0", features = ["hs"] }
-tor-checkable = { path = "../tor-checkable", version = "0.22.0" }
-tor-circmgr = { version = "0.22.0", path = "../tor-circmgr", features = ["hs-client"] }
-tor-config = { path = "../tor-config", version = "0.22.0" }
-tor-dirclient = { path = "../tor-dirclient", version = "0.22.0", default-features = false, features = ["hs-client"] }
-tor-error = { path = "../tor-error", version = "0.22.0", features = ["tracing"] }
-tor-hscrypto = { version = "0.22.0", path = "../tor-hscrypto" }
-tor-keymgr = { version = "0.22.0", path = "../tor-keymgr", default-features = false }
-tor-linkspec = { version = "0.22.0", path = "../tor-linkspec", features = ["decode", "verbatim"] }
-tor-llcrypto = { version = "0.22.0", path = "../tor-llcrypto" }
-tor-netdir = { version = "0.22.0", path = "../tor-netdir", features = ["hs-client"] }
-tor-netdoc = { path = "../tor-netdoc", version = "0.22.0", features = ["hs-client"] }
-tor-persist = { path = "../tor-persist", version = "0.22.0" }
-tor-proto = { version = "0.22.0", path = "../tor-proto", features = ["hs-client", "send-control-msg"] }
-tor-rtcompat = { version = "0.22.0", path = "../tor-rtcompat" }
+tor-async-utils = { version = "0.23.0", path = "../tor-async-utils" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.23.0" }
+tor-cell = { path = "../tor-cell", version = "0.23.0", features = ["hs"] }
+tor-checkable = { path = "../tor-checkable", version = "0.23.0" }
+tor-circmgr = { version = "0.23.0", path = "../tor-circmgr", features = ["hs-client"] }
+tor-config = { path = "../tor-config", version = "0.23.0" }
+tor-dirclient = { path = "../tor-dirclient", version = "0.23.0", default-features = false, features = ["hs-client"] }
+tor-error = { path = "../tor-error", version = "0.23.0", features = ["tracing"] }
+tor-hscrypto = { version = "0.23.0", path = "../tor-hscrypto" }
+tor-keymgr = { version = "0.23.0", path = "../tor-keymgr", default-features = false }
+tor-linkspec = { version = "0.23.0", path = "../tor-linkspec", features = ["decode", "verbatim"] }
+tor-llcrypto = { version = "0.23.0", path = "../tor-llcrypto" }
+tor-netdir = { version = "0.23.0", path = "../tor-netdir", features = ["hs-client"] }
+tor-netdoc = { path = "../tor-netdoc", version = "0.23.0", features = ["hs-client"] }
+tor-persist = { path = "../tor-persist", version = "0.23.0" }
+tor-proto = { version = "0.23.0", path = "../tor-proto", features = ["hs-client", "send-control-msg"] }
+tor-rtcompat = { version = "0.23.0", path = "../tor-rtcompat" }
tracing = "0.1.36"
[dev-dependencies]
humantime = "2"
tokio-crate = { package = "tokio", version = "1.7", features = ["full"] }
-tor-async-utils = { path = "../tor-async-utils", version = "0.22.0" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-chanmgr = { path = "../tor-chanmgr", version = "0.22.0" }
-tor-circmgr = { version = "0.22.0", path = "../tor-circmgr", features = ["hs-client", "testing"] }
-tor-guardmgr = { path = "../tor-guardmgr", version = "0.22.0", features = ["testing"] }
-tor-netdir = { path = "../tor-netdir", version = "0.22.0", features = ["testing"] }
-tor-netdoc = { path = "../tor-netdoc", version = "0.22.0", features = ["testing"] }
-tor-persist = { path = "../tor-persist", version = "0.22.0", features = ["testing"] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0", features = ["tokio", "native-tls"] }
-tor-rtmock = { path = "../tor-rtmock", version = "0.22.0" }
+tor-async-utils = { path = "../tor-async-utils", version = "0.23.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-chanmgr = { path = "../tor-chanmgr", version = "0.23.0" }
+tor-circmgr = { version = "0.23.0", path = "../tor-circmgr", features = ["hs-client", "testing"] }
+tor-guardmgr = { path = "../tor-guardmgr", version = "0.23.0", features = ["testing"] }
+tor-netdir = { path = "../tor-netdir", version = "0.23.0", features = ["testing"] }
+tor-netdoc = { path = "../tor-netdoc", version = "0.23.0", features = ["testing"] }
+tor-persist = { path = "../tor-persist", version = "0.23.0", features = ["testing"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0", features = ["tokio", "native-tls"] }
+tor-rtmock = { path = "../tor-rtmock", version = "0.23.0" }
tracing-test = "0.2.4"
diff --git a/crates/tor-hscrypto/Cargo.toml b/crates/tor-hscrypto/Cargo.toml
index 904a47d31..465fc371e 100644
--- a/crates/tor-hscrypto/Cargo.toml
+++ b/crates/tor-hscrypto/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-hscrypto"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -32,19 +32,19 @@ digest = "0.10.0"
itertools = "0.13.0"
paste = "1"
rand = "0.8"
-safelog = { path = "../safelog", version = "0.3.6" }
+safelog = { path = "../safelog", version = "0.4.0" }
signature = "2"
subtle = "2"
thiserror = "1"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-bytes = { version = "0.22.0", path = "../tor-bytes" }
-tor-error = { version = "0.22.0", path = "../tor-error" }
-tor-llcrypto = { version = "0.22.0", path = "../tor-llcrypto", features = ["hsv3-client", "hsv3-service"] }
-tor-units = { path = "../tor-units", version = "0.22.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-bytes = { version = "0.23.0", path = "../tor-bytes" }
+tor-error = { version = "0.23.0", path = "../tor-error" }
+tor-llcrypto = { version = "0.23.0", path = "../tor-llcrypto", features = ["hsv3-client", "hsv3-service"] }
+tor-units = { path = "../tor-units", version = "0.23.0" }
zeroize = { version = "1", optional = true }
[dev-dependencies]
hex = "0.4"
hex-literal = "0.4"
humantime = "2"
-tor-basic-utils = { version = "0.22.0", path = "../tor-basic-utils" }
+tor-basic-utils = { version = "0.23.0", path = "../tor-basic-utils" }
diff --git a/crates/tor-hspow/Cargo.toml b/crates/tor-hspow/Cargo.toml
index 5b6d48bfb..63e3deaa4 100644
--- a/crates/tor-hspow/Cargo.toml
+++ b/crates/tor-hspow/Cargo.toml
@@ -21,10 +21,10 @@ full = ["tor-hscrypto/full", "equix/full"]
arrayvec = "0.7.4"
blake2 = "0.10.6"
derive_more = { version = "1.0.0", features = ["full"] }
-equix = { path = "../equix", version = "0.1.3" }
+equix = { path = "../equix", version = "0.2.0" }
rand = "0.8.5"
thiserror = "1"
-tor-hscrypto = { version = "0.22.0", path = "../tor-hscrypto" }
+tor-hscrypto = { version = "0.23.0", path = "../tor-hscrypto" }
[dev-dependencies]
hex-literal = "0.4.1"
diff --git a/crates/tor-hsrproxy/Cargo.toml b/crates/tor-hsrproxy/Cargo.toml
index e23edf0e4..660ba74ed 100644
--- a/crates/tor-hsrproxy/Cargo.toml
+++ b/crates/tor-hsrproxy/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-hsrproxy"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -41,20 +41,20 @@ derive-deftly = "0.14"
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
futures = "0.3.14"
# postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] }
-oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.1.0" }
+oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.2.0" }
rangemap = "1.3"
-safelog = { version = "0.3.6", path = "../safelog" }
+safelog = { version = "0.4.0", path = "../safelog" }
serde = { version = "1.0.103", features = ["derive"] }
serde_with = "3.0.0"
thiserror = "1"
-tor-async-utils = { version = "0.22.0", path = "../tor-async-utils" }
-tor-cell = { version = "0.22.0", path = "../tor-cell" }
-tor-config = { version = "0.22.0", path = "../tor-config" }
-tor-error = { version = "0.22.0", path = "../tor-error" }
-tor-hsservice = { path = "../tor-hsservice", version = "0.22.0" }
-tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.22.0" }
-tor-proto = { version = "0.22.0", path = "../tor-proto", features = ["hs-service"] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0" }
+tor-async-utils = { version = "0.23.0", path = "../tor-async-utils" }
+tor-cell = { version = "0.23.0", path = "../tor-cell" }
+tor-config = { version = "0.23.0", path = "../tor-config" }
+tor-error = { version = "0.23.0", path = "../tor-error" }
+tor-hsservice = { path = "../tor-hsservice", version = "0.23.0" }
+tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.23.0" }
+tor-proto = { version = "0.23.0", path = "../tor-proto", features = ["hs-service"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0" }
tracing = "0.1.36"
void = "1"
diff --git a/crates/tor-hsservice/Cargo.toml b/crates/tor-hsservice/Cargo.toml
index a46049a86..75ffa78ff 100644
--- a/crates/tor-hsservice/Cargo.toml
+++ b/crates/tor-hsservice/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-hsservice"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -65,7 +65,7 @@ derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = { version = "1.0.0", features = ["full"] }
digest = "0.10.0"
educe = "0.4.6"
-fs-mistrust = { path = "../fs-mistrust", version = "0.7.9", features = ["serde"] }
+fs-mistrust = { path = "../fs-mistrust", version = "0.8.0", features = ["serde"] }
futures = "0.3.14"
growable-bloom-filter = "2.0.1"
hex = "0.4"
@@ -73,40 +73,40 @@ humantime = "2"
itertools = "0.13.0"
k12 = "0.3.0"
once_cell = "1"
-oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.1.0" }
+oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.2.0" }
postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] }
rand = "0.8.5"
rand_core = "0.6.2"
-retry-error = { version = "0.5.2", path = "../retry-error" }
-safelog = { path = "../safelog", version = "0.3.6" }
+retry-error = { version = "0.6.0", path = "../retry-error" }
+safelog = { path = "../safelog", version = "0.4.0" }
serde = { version = "1.0.103", features = ["derive"] }
serde_with = "3.0.0"
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "1"
-tor-async-utils = { path = "../tor-async-utils", version = "0.22.0" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-bytes = { version = "0.22.0", path = "../tor-bytes" }
-tor-cell = { version = "0.22.0", path = "../tor-cell", features = ["hs"] }
-tor-circmgr = { version = "0.22.0", path = "../tor-circmgr", features = ["hs-service"] }
-tor-config = { version = "0.22.0", path = "../tor-config" }
-tor-dirclient = { path = "../tor-dirclient", version = "0.22.0", default-features = false, features = ["hs-service"] }
-tor-error = { version = "0.22.0", path = "../tor-error" }
-tor-hscrypto = { version = "0.22.0", path = "../tor-hscrypto", features = ["ope"] }
-tor-keymgr = { version = "0.22.0", path = "../tor-keymgr", features = ["keymgr"] }
-tor-linkspec = { version = "0.22.0", path = "../tor-linkspec", features = ["verbatim", "decode"] }
-tor-llcrypto = { version = "0.22.0", path = "../tor-llcrypto" }
-tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.22.0" }
-tor-netdir = { version = "0.22.0", path = "../tor-netdir", features = ["hs-service"] }
-tor-netdoc = { version = "0.22.0", path = "../tor-netdoc", features = ["hs-service"] }
-tor-persist = { version = "0.22.0", path = "../tor-persist", features = ["state-dir"] }
-tor-proto = { version = "0.22.0", path = "../tor-proto", features = [
+tor-async-utils = { path = "../tor-async-utils", version = "0.23.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-bytes = { version = "0.23.0", path = "../tor-bytes" }
+tor-cell = { version = "0.23.0", path = "../tor-cell", features = ["hs"] }
+tor-circmgr = { version = "0.23.0", path = "../tor-circmgr", features = ["hs-service"] }
+tor-config = { version = "0.23.0", path = "../tor-config" }
+tor-dirclient = { path = "../tor-dirclient", version = "0.23.0", default-features = false, features = ["hs-service"] }
+tor-error = { version = "0.23.0", path = "../tor-error" }
+tor-hscrypto = { version = "0.23.0", path = "../tor-hscrypto", features = ["ope"] }
+tor-keymgr = { version = "0.23.0", path = "../tor-keymgr", features = ["keymgr"] }
+tor-linkspec = { version = "0.23.0", path = "../tor-linkspec", features = ["verbatim", "decode"] }
+tor-llcrypto = { version = "0.23.0", path = "../tor-llcrypto" }
+tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.23.0" }
+tor-netdir = { version = "0.23.0", path = "../tor-netdir", features = ["hs-service"] }
+tor-netdoc = { version = "0.23.0", path = "../tor-netdoc", features = ["hs-service"] }
+tor-persist = { version = "0.23.0", path = "../tor-persist", features = ["state-dir"] }
+tor-proto = { version = "0.23.0", path = "../tor-proto", features = [
"experimental-api",
"hs-service",
"send-control-msg",
] }
-tor-protover = { version = "0.22.0", path = "../tor-protover" }
-tor-relay-selection = { path = "../tor-relay-selection", version = "0.22.0" }
-tor-rtcompat = { version = "0.22.0", path = "../tor-rtcompat" }
+tor-protover = { version = "0.23.0", path = "../tor-protover" }
+tor-relay-selection = { path = "../tor-relay-selection", version = "0.23.0" }
+tor-rtcompat = { version = "0.23.0", path = "../tor-rtcompat" }
tracing = "0.1.36"
void = "1"
@@ -116,12 +116,12 @@ rmp-serde = "1"
serde_json = "1.0.104"
slotmap = "1.0.6"
tempfile = "3"
-test-temp-dir = { version = "0.2.1", path = "../test-temp-dir" }
-tor-key-forge = { version = "0.22.0", path = "../tor-key-forge" }
-tor-keymgr = { version = "0.22.0", path = "../tor-keymgr", features = ["keymgr", "testing"] }
-tor-netdir = { version = "0.22.0", path = "../tor-netdir", features = ["hs-service", "testing"] }
-tor-netdoc = { path = "../tor-netdoc", version = "0.22.0", features = ["testing"] }
-tor-persist = { version = "0.22.0", path = "../tor-persist", features = ["testing"] }
-tor-rtmock = { path = "../tor-rtmock", version = "0.22.0" }
+test-temp-dir = { version = "0.3.0", path = "../test-temp-dir" }
+tor-key-forge = { version = "0.23.0", path = "../tor-key-forge" }
+tor-keymgr = { version = "0.23.0", path = "../tor-keymgr", features = ["keymgr", "testing"] }
+tor-netdir = { version = "0.23.0", path = "../tor-netdir", features = ["hs-service", "testing"] }
+tor-netdoc = { path = "../tor-netdoc", version = "0.23.0", features = ["testing"] }
+tor-persist = { version = "0.23.0", path = "../tor-persist", features = ["testing"] }
+tor-rtmock = { path = "../tor-rtmock", version = "0.23.0" }
tracing-test = "0.2.4"
walkdir = "2"
diff --git a/crates/tor-key-forge/Cargo.toml b/crates/tor-key-forge/Cargo.toml
index 8c2ff7a81..e0bdf977e 100644
--- a/crates/tor-key-forge/Cargo.toml
+++ b/crates/tor-key-forge/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-key-forge"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc."]
edition = "2021"
rust-version = "1.77"
@@ -31,10 +31,10 @@ rand = "0.8"
signature = "2"
ssh-key = { version = "0.6.1", features = ["std"] }
thiserror = "1"
-tor-error = { version = "0.22.0", path = "../tor-error" }
-tor-hscrypto = { path = "../tor-hscrypto", version = "0.22.0" }
-tor-llcrypto = { version = "0.22.0", path = "../tor-llcrypto" }
+tor-error = { version = "0.23.0", path = "../tor-error" }
+tor-hscrypto = { path = "../tor-hscrypto", version = "0.23.0" }
+tor-llcrypto = { version = "0.23.0", path = "../tor-llcrypto" }
[dev-dependencies]
signature = "2"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
diff --git a/crates/tor-keymgr/Cargo.toml b/crates/tor-keymgr/Cargo.toml
index 5dd4cc47e..0f088d8ed 100644
--- a/crates/tor-keymgr/Cargo.toml
+++ b/crates/tor-keymgr/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-keymgr"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Gabriela Moldovan <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -43,7 +43,7 @@ derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = { version = "1.0.0", features = ["full"] }
downcast-rs = "1.2.0"
dyn-clone = "1.0.11"
-fs-mistrust = { path = "../fs-mistrust", version = "0.7.9", features = ["serde", "walkdir"] }
+fs-mistrust = { path = "../fs-mistrust", version = "0.8.0", features = ["serde", "walkdir"] }
glob-match = "0.2.1"
humantime = "2"
inventory = "0.3.13"
@@ -52,13 +52,13 @@ rand = "0.8"
serde = { version = "1.0.103", features = ["derive"] }
ssh-key = { version = "0.6.1", features = ["std"] }
thiserror = "1"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-config = { path = "../tor-config", version = "0.22.0" }
-tor-error = { path = "../tor-error", version = "0.22.0", features = ["tracing"] }
-tor-hscrypto = { path = "../tor-hscrypto", version = "0.22.0" }
-tor-key-forge = { path = "../tor-key-forge", version = "0.22.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.22.0", features = ["keymgr"] }
-tor-persist = { path = "../tor-persist", version = "0.22.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-config = { path = "../tor-config", version = "0.23.0" }
+tor-error = { path = "../tor-error", version = "0.23.0", features = ["tracing"] }
+tor-hscrypto = { path = "../tor-hscrypto", version = "0.23.0" }
+tor-key-forge = { path = "../tor-key-forge", version = "0.23.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.23.0", features = ["keymgr"] }
+tor-persist = { path = "../tor-persist", version = "0.23.0" }
tracing = "0.1.36"
walkdir = { version = "2" }
zeroize = "1"
@@ -66,7 +66,7 @@ zeroize = "1"
[dev-dependencies]
serde_json = "1.0.104"
tempfile = "3"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-linkspec/Cargo.toml b/crates/tor-linkspec/Cargo.toml
index 9d04127f7..6f9213eee 100644
--- a/crates/tor-linkspec/Cargo.toml
+++ b/crates/tor-linkspec/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-linkspec"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -32,22 +32,22 @@ __is_experimental = []
[dependencies]
base64ct = "1.5.1"
by_address = "1"
-caret = { path = "../caret", version = "0.4.5" }
+caret = { path = "../caret", version = "0.5.0" }
derive-deftly = "0.14"
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = { version = "1.0.0", features = ["full"] }
hex = "0.4"
itertools = "0.13.0"
-safelog = { path = "../safelog", version = "0.3.6" }
+safelog = { path = "../safelog", version = "0.4.0" }
serde = { version = "1.0.103", features = ["derive"] }
serde_with = "3.0.0"
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "1"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-bytes = { path = "../tor-bytes", version = "0.22.0" }
-tor-config = { path = "../tor-config", version = "0.22.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.22.0" }
-tor-protover = { path = "../tor-protover", version = "0.22.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.23.0" }
+tor-config = { path = "../tor-config", version = "0.23.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.23.0" }
+tor-protover = { path = "../tor-protover", version = "0.23.0" }
[dev-dependencies]
hex-literal = "0.4"
diff --git a/crates/tor-llcrypto/Cargo.toml b/crates/tor-llcrypto/Cargo.toml
index 8137e04be..5477f9088 100644
--- a/crates/tor-llcrypto/Cargo.toml
+++ b/crates/tor-llcrypto/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-llcrypto"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -48,7 +48,7 @@ hex = "0.4"
openssl = { version = "0.10.48", optional = true }
rand_core = "0.6.2"
rsa = "0.9.0"
-safelog = { version = "0.3.6", path = "../safelog" }
+safelog = { version = "0.4.0", path = "../safelog" }
serde = "1.0.103"
sha1 = "0.10.0"
sha2 = "0.10.0"
@@ -67,7 +67,7 @@ cipher = "0.4.1"
hex-literal = "0.4"
rand = "0.8"
serde_test = "1.0.124"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
[target.wasm32-unknown-unknown.dependencies]
getrandom = { version = "0.2.3", features = ["js"] }
diff --git a/crates/tor-log-ratelim/Cargo.toml b/crates/tor-log-ratelim/Cargo.toml
index 39b00fc97..938456830 100644
--- a/crates/tor-log-ratelim/Cargo.toml
+++ b/crates/tor-log-ratelim/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-log-ratelim"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc."]
edition = "2021"
rust-version = "1.77"
@@ -22,8 +22,8 @@ futures = "0.3.14"
humantime = "2"
once_cell = "1.18"
thiserror = "1"
-tor-error = { path = "../tor-error", version = "0.22.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0" }
+tor-error = { path = "../tor-error", version = "0.23.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0" }
tracing = "0.1.36"
weak-table = "0.3.0"
diff --git a/crates/tor-memquota/Cargo.toml b/crates/tor-memquota/Cargo.toml
index 889bcd64b..c32c7206c 100644
--- a/crates/tor-memquota/Cargo.toml
+++ b/crates/tor-memquota/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-memquota"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Ian Jackson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -21,12 +21,12 @@ serde = { version = "1.0.103", features = ["derive"] }
slotmap = "1.0.6"
static_assertions = "1"
thiserror = "1"
-tor-async-utils = { path = "../tor-async-utils", version = "0.22.0" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0", features = ["serde"] }
-tor-config = { path = "../tor-config", version = "0.22.0" }
-tor-error = { path = "../tor-error", version = "0.22.0", features = ["tracing"] }
-tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.22.0" }
-tor-rtcompat = { version = "0.22.0", path = "../tor-rtcompat" }
+tor-async-utils = { path = "../tor-async-utils", version = "0.23.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0", features = ["serde"] }
+tor-config = { path = "../tor-config", version = "0.23.0" }
+tor-error = { path = "../tor-error", version = "0.23.0", features = ["tracing"] }
+tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.23.0" }
+tor-rtcompat = { version = "0.23.0", path = "../tor-rtcompat" }
tracing = "0.1.36"
visibility = { version = "0.1.0", optional = true }
void = "1"
@@ -35,9 +35,9 @@ void = "1"
itertools = "0.13.0"
rand = "0.8"
serde_json = "1.0.50"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-rtcompat = { version = "0.22.0", path = "../tor-rtcompat", features = ["tokio", "native-tls"] }
-tor-rtmock = { path = "../tor-rtmock", version = "0.22.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-rtcompat = { version = "0.23.0", path = "../tor-rtcompat", features = ["tokio", "native-tls"] }
+tor-rtmock = { path = "../tor-rtmock", version = "0.23.0" }
tracing-test = "0.2.4"
[features]
diff --git a/crates/tor-netdir/Cargo.toml b/crates/tor-netdir/Cargo.toml
index eb6d67b65..0b47d944a 100644
--- a/crates/tor-netdir/Cargo.toml
+++ b/crates/tor-netdir/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-netdir"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -60,15 +60,15 @@ static_assertions = "1"
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "1"
time = { version = "0.3.17", features = ["macros"], optional = true }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-error = { path = "../tor-error", version = "0.22.0" }
-tor-geoip = { path = "../tor-geoip", version = "0.22.0", optional = true }
-tor-hscrypto = { path = "../tor-hscrypto", version = "0.22.0", optional = true }
-tor-linkspec = { path = "../tor-linkspec", version = "0.22.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.22.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.22.0" }
-tor-protover = { path = "../tor-protover", version = "0.22.0" }
-tor-units = { path = "../tor-units", version = "0.22.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-error = { path = "../tor-error", version = "0.23.0" }
+tor-geoip = { path = "../tor-geoip", version = "0.23.0", optional = true }
+tor-hscrypto = { path = "../tor-hscrypto", version = "0.23.0", optional = true }
+tor-linkspec = { path = "../tor-linkspec", version = "0.23.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.23.0" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.23.0" }
+tor-protover = { path = "../tor-protover", version = "0.23.0" }
+tor-units = { path = "../tor-units", version = "0.23.0" }
tracing = "0.1.36"
typed-index-collections = "3.1"
visibility = { version = "0.1.0", optional = true }
@@ -77,6 +77,6 @@ visibility = { version = "0.1.0", optional = true }
float_eq = "1.0.0"
hex = "0.4"
hex-literal = "0.4"
-tor-netdoc = { path = "../tor-netdoc", version = "0.22.0", features = ["build_docs"] }
+tor-netdoc = { path = "../tor-netdoc", version = "0.23.0", features = ["build_docs"] }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-netdoc/Cargo.toml b/crates/tor-netdoc/Cargo.toml
index 1e1e80660..805e2af7b 100644
--- a/crates/tor-netdoc/Cargo.toml
+++ b/crates/tor-netdoc/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-netdoc"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -104,17 +104,17 @@ subtle = "2"
thiserror = "1"
time = { version = "0.3", features = ["std", "parsing", "macros", "formatting"] }
tinystr = "0.7.0"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-bytes = { path = "../tor-bytes", version = "0.22.0" }
-tor-cell = { path = "../tor-cell", version = "0.22.0" }
-tor-cert = { path = "../tor-cert", version = "0.22.0" }
-tor-checkable = { path = "../tor-checkable", version = "0.22.0" }
-tor-error = { path = "../tor-error", version = "0.22.0" }
-tor-hscrypto = { path = "../tor-hscrypto", version = "0.22.0", optional = true }
-tor-linkspec = { path = "../tor-linkspec", version = "0.22.0", optional = true }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.22.0" }
-tor-protover = { path = "../tor-protover", version = "0.22.0" }
-tor-units = { version = "0.22.0", path = "../tor-units", optional = true }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.23.0" }
+tor-cell = { path = "../tor-cell", version = "0.23.0" }
+tor-cert = { path = "../tor-cert", version = "0.23.0" }
+tor-checkable = { path = "../tor-checkable", version = "0.23.0" }
+tor-error = { path = "../tor-error", version = "0.23.0" }
+tor-hscrypto = { path = "../tor-hscrypto", version = "0.23.0", optional = true }
+tor-linkspec = { path = "../tor-linkspec", version = "0.23.0", optional = true }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.23.0" }
+tor-protover = { path = "../tor-protover", version = "0.23.0" }
+tor-units = { version = "0.23.0", path = "../tor-units", optional = true }
visibility = { version = "0.1.0", optional = true }
visible = { version = "0.0.1", optional = true }
void = "1"
@@ -126,7 +126,7 @@ anyhow = "1.0.23"
hex-literal = "0.4"
itertools = "0.13.0"
serde_json = "1.0.50"
-tor-basic-utils = { version = "0.22.0", path = "../tor-basic-utils" }
+tor-basic-utils = { version = "0.23.0", path = "../tor-basic-utils" }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-persist/Cargo.toml b/crates/tor-persist/Cargo.toml
index e500d4962..327d53079 100644
--- a/crates/tor-persist/Cargo.toml
+++ b/crates/tor-persist/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-persist"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -35,19 +35,19 @@ amplify = { version = "4", default-features = false, features = ["derive"], opti
derive-deftly = "0.14"
derive_more = { version = "1.0.0", features = ["full"] }
filetime = { version = "0.2", default-features = false }
-fs-mistrust = { path = "../fs-mistrust", version = "0.7.9", features = ["walkdir"] }
-fslock-guard = { path = "../fslock-guard", version = "0.1.2", optional = true }
+fs-mistrust = { path = "../fs-mistrust", version = "0.8.0", features = ["walkdir"] }
+fslock-guard = { path = "../fslock-guard", version = "0.2.0", optional = true }
futures = "0.3.14"
itertools = "0.13.0"
-oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.1.0" }
+oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.2.0" }
paste = "1"
sanitize-filename = "0.5.0"
serde = { version = "1.0.103", features = ["derive"] }
serde_json = "1.0.50"
thiserror = "1"
-tor-async-utils = { path = "../tor-async-utils", version = "0.22.0" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-error = { path = "../tor-error", version = "0.22.0", features = ["tracing"] }
+tor-async-utils = { path = "../tor-async-utils", version = "0.23.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-error = { path = "../tor-error", version = "0.23.0", features = ["tracing"] }
tracing = "0.1.36"
void = "1"
@@ -59,7 +59,7 @@ anyhow = { version = "1.0.23" }
derive-deftly = "0.14"
itertools = "0.13.0"
tempfile = "3"
-test-temp-dir = { version = "0.2.1", path = "../test-temp-dir" }
+test-temp-dir = { version = "0.3.0", path = "../test-temp-dir" }
tracing-test = "0.2.4"
[package.metadata.docs.rs]
diff --git a/crates/tor-proto/Cargo.toml b/crates/tor-proto/Cargo.toml
index 4b8949481..dcd0ac235 100644
--- a/crates/tor-proto/Cargo.toml
+++ b/crates/tor-proto/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-proto"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -66,30 +66,30 @@ educe = "0.4.6"
futures = "0.3.14"
hkdf = "0.12.0"
hmac = "0.12.0"
-oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.1.0" }
+oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.2.0" }
pin-project = "1"
rand = "0.8"
rand_core = "0.6.2"
-safelog = { path = "../safelog", version = "0.3.6" }
+safelog = { path = "../safelog", version = "0.4.0" }
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.22.0" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-bytes = { path = "../tor-bytes", version = "0.22.0" }
-tor-cell = { path = "../tor-cell", version = "0.22.0" }
-tor-cert = { path = "../tor-cert", version = "0.22.0" }
-tor-checkable = { path = "../tor-checkable", version = "0.22.0" }
-tor-config = { path = "../tor-config", version = "0.22.0" }
-tor-error = { path = "../tor-error", version = "0.22.0" }
-tor-hscrypto = { path = "../tor-hscrypto", version = "0.22.0", optional = true }
-tor-linkspec = { path = "../tor-linkspec", version = "0.22.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.22.0" }
-tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.22.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0" }
-tor-rtmock = { path = "../tor-rtmock", version = "0.22.0" }
-tor-units = { path = "../tor-units", version = "0.22.0" }
+tor-async-utils = { path = "../tor-async-utils", version = "0.23.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.23.0" }
+tor-cell = { path = "../tor-cell", version = "0.23.0" }
+tor-cert = { path = "../tor-cert", version = "0.23.0" }
+tor-checkable = { path = "../tor-checkable", version = "0.23.0" }
+tor-config = { path = "../tor-config", version = "0.23.0" }
+tor-error = { path = "../tor-error", version = "0.23.0" }
+tor-hscrypto = { path = "../tor-hscrypto", version = "0.23.0", optional = true }
+tor-linkspec = { path = "../tor-linkspec", version = "0.23.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.23.0" }
+tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.23.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0" }
+tor-rtmock = { path = "../tor-rtmock", version = "0.23.0" }
+tor-units = { path = "../tor-units", version = "0.23.0" }
tracing = "0.1.36"
typenum = "1.12"
visibility = { version = "0.1.0", optional = true }
@@ -104,6 +104,6 @@ itertools = "0.13.0"
regex = { version = "1", default-features = false, features = ["std"] }
statrs = "0.17.1"
tokio-crate = { package = "tokio", version = "1.7", features = ["full"] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0", features = ["tokio", "native-tls"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0", features = ["tokio", "native-tls"] }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-protover/Cargo.toml b/crates/tor-protover/Cargo.toml
index 2636e250b..fd3c919bd 100644
--- a/crates/tor-protover/Cargo.toml
+++ b/crates/tor-protover/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-protover"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -12,7 +12,7 @@ categories = ["network-programming"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
-caret = { path = "../caret", version = "0.4.5" }
+caret = { path = "../caret", version = "0.5.0" }
thiserror = "1"
[features]
diff --git a/crates/tor-ptmgr/Cargo.toml b/crates/tor-ptmgr/Cargo.toml
index ec189751b..01f71bbed 100644
--- a/crates/tor-ptmgr/Cargo.toml
+++ b/crates/tor-ptmgr/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-ptmgr"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -36,27 +36,27 @@ __is_experimental = []
async-trait = "0.1.54"
cfg-if = "1.0.0"
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
-fs-mistrust = { version = "0.7.9", path = "../fs-mistrust" }
+fs-mistrust = { version = "0.8.0", path = "../fs-mistrust" }
futures = "0.3.14"
itertools = "0.13.0"
-oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.1.0" }
+oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.2.0" }
serde = { version = "1.0.103", features = ["derive"] }
thiserror = "1"
-tor-async-utils = { version = "0.22.0", path = "../tor-async-utils" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-chanmgr = { version = "0.22.0", path = "../tor-chanmgr", features = ["pt-client"] }
-tor-config = { version = "0.22.0", path = "../tor-config" }
-tor-error = { version = "0.22.0", path = "../tor-error", features = ["tracing"] }
-tor-linkspec = { version = "0.22.0", path = "../tor-linkspec", features = ["pt-client"] }
-tor-rtcompat = { version = "0.22.0", path = "../tor-rtcompat" }
-tor-socksproto = { version = "0.22.0", path = "../tor-socksproto" }
+tor-async-utils = { version = "0.23.0", path = "../tor-async-utils" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-chanmgr = { version = "0.23.0", path = "../tor-chanmgr", features = ["pt-client"] }
+tor-config = { version = "0.23.0", path = "../tor-config" }
+tor-error = { version = "0.23.0", path = "../tor-error", features = ["tracing"] }
+tor-linkspec = { version = "0.23.0", path = "../tor-linkspec", features = ["pt-client"] }
+tor-rtcompat = { version = "0.23.0", path = "../tor-rtcompat" }
+tor-socksproto = { version = "0.23.0", path = "../tor-socksproto" }
tracing = "0.1.36"
visibility = { version = "0.1.0", optional = true }
[dev-dependencies]
anyhow = "1.0.23"
tokio = { version = "1.7", features = ["rt", "rt-multi-thread", "io-util", "net", "time", "macros"] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0", features = ["tokio", "native-tls"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0", features = ["tokio", "native-tls"] }
tracing-subscriber = "0.3.0"
[[example]]
diff --git a/crates/tor-relay-crypto/Cargo.toml b/crates/tor-relay-crypto/Cargo.toml
index 730ae33f6..cf4be9045 100644
--- a/crates/tor-relay-crypto/Cargo.toml
+++ b/crates/tor-relay-crypto/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-relay-crypto"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc."]
edition = "2021"
rust-version = "1.77"
@@ -18,8 +18,8 @@ full = ["tor-cert/full", "tor-key-forge/full", "tor-keymgr/full"]
[dependencies]
derive-deftly = "0.14"
derive_more = { version = "1.0.0", features = ["full"] }
-tor-cert = { path = "../tor-cert", version = "0.22.0", features = ["encode"] }
-tor-key-forge = { path = "../tor-key-forge", version = "0.22.0" }
-tor-keymgr = { path = "../tor-keymgr", version = "0.22.0" }
+tor-cert = { path = "../tor-cert", version = "0.23.0", features = ["encode"] }
+tor-key-forge = { path = "../tor-key-forge", version = "0.23.0" }
+tor-keymgr = { path = "../tor-keymgr", version = "0.23.0" }
[dev-dependencies]
diff --git a/crates/tor-relay-selection/Cargo.toml b/crates/tor-relay-selection/Cargo.toml
index 65e366181..77214a582 100644
--- a/crates/tor-relay-selection/Cargo.toml
+++ b/crates/tor-relay-selection/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-relay-selection"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -31,17 +31,17 @@ __is_experimental = []
[dependencies]
rand = "0.8"
serde = { version = "1.0.103", features = ["derive"] }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-geoip = { path = "../tor-geoip", version = "0.22.0", optional = true }
-tor-linkspec = { path = "../tor-linkspec", version = "0.22.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.22.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.22.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-geoip = { path = "../tor-geoip", version = "0.23.0", optional = true }
+tor-linkspec = { path = "../tor-linkspec", version = "0.23.0" }
+tor-netdir = { path = "../tor-netdir", version = "0.23.0" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.23.0" }
[dev-dependencies]
once_cell = "1"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22" }
-tor-netdir = { path = "../tor-netdir", version = "0.22.0", features = ["testing"] }
-tor-netdoc = { path = "../tor-netdoc", version = "0.22.0", features = ["testing"] }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23" }
+tor-netdir = { path = "../tor-netdir", version = "0.23.0", features = ["testing"] }
+tor-netdoc = { path = "../tor-netdoc", version = "0.23.0", features = ["testing"] }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-rpcbase/Cargo.toml b/crates/tor-rpcbase/Cargo.toml
index 8b7a10c34..00bd569a8 100644
--- a/crates/tor-rpcbase/Cargo.toml
+++ b/crates/tor-rpcbase/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-rpcbase"
-version = "0.22.0"
+version = "0.23.0"
edition = "2021"
rust-version = "1.77"
authors = ["The Tor Project, Inc.", "eta <[email protected]>"]
@@ -24,8 +24,8 @@ paste = "1"
serde = { version = "1.0.103", features = ["derive"] }
serde_repr = "0.1.12"
thiserror = "1"
-tor-async-utils = { path = "../tor-async-utils", version = "0.22.0" }
-tor-error = { path = "../tor-error/", version = "0.22.0", features = ["rpc"] }
+tor-async-utils = { path = "../tor-async-utils", version = "0.23.0" }
+tor-error = { path = "../tor-error/", version = "0.23.0", features = ["rpc"] }
typetag = "0.2.7"
void = "1"
diff --git a/crates/tor-rtcompat/Cargo.toml b/crates/tor-rtcompat/Cargo.toml
index 2c235fa39..b14df1641 100644
--- a/crates/tor-rtcompat/Cargo.toml
+++ b/crates/tor-rtcompat/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-rtcompat"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -62,7 +62,7 @@ tokio-crate = { package = "tokio", version = "1.7", optional = true, features =
"time",
] }
tokio-util = { version = "0.7.0", features = ["compat"], optional = true }
-tor-error = { version = "0.22.0", path = "../tor-error" }
+tor-error = { version = "0.23.0", path = "../tor-error" }
tracing = "0.1.36"
void = "1"
x509-signature = { version = "0.5.0", optional = true }
diff --git a/crates/tor-rtmock/Cargo.toml b/crates/tor-rtmock/Cargo.toml
index 46dc17459..c26379a9c 100644
--- a/crates/tor-rtmock/Cargo.toml
+++ b/crates/tor-rtmock/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-rtmock"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -20,14 +20,14 @@ educe = "0.4.6"
futures = "0.3.14"
humantime = "2"
itertools = "0.13.0"
-oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.1.0" }
+oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.2.0" }
pin-project = "1"
priority-queue = "2.0.3"
slotmap = "1.0.6"
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "1"
-tor-error = { version = "0.22.0", path = "../tor-error", features = ["tracing"] }
-tor-rtcompat = { version = "0.22.0", path = "../tor-rtcompat" }
+tor-error = { version = "0.23.0", path = "../tor-error", features = ["tracing"] }
+tor-rtcompat = { version = "0.23.0", path = "../tor-rtcompat" }
tracing = "0.1.36"
tracing-test = "0.2.4"
void = "1"
@@ -35,8 +35,8 @@ void = "1"
[dev-dependencies]
futures-await-test = "0.3.0"
rand = "0.8"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.22.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.22.0", features = ["tokio", "native-tls"] }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.23.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.23.0", features = ["tokio", "native-tls"] }
[features]
full = ["tor-rtcompat/full", "tor-error/full", "oneshot-fused-workaround/full"]
diff --git a/crates/tor-socksproto/Cargo.toml b/crates/tor-socksproto/Cargo.toml
index 60663e1a2..57e9fe8bb 100644
--- a/crates/tor-socksproto/Cargo.toml
+++ b/crates/tor-socksproto/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-socksproto"
-version = "0.22.0"
+version = "0.23.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -21,11 +21,11 @@ full = ["proxy-handshake", "client-handshake", "caret/full", "tor-bytes/full", "
[dependencies]
arbitrary = { version = "1.0.1", optional = true, features = ["derive"] }
-caret = { path = "../caret", version = "0.4.5" }
+caret = { path = "../caret", version = "0.5.0" }
subtle = "2"
thiserror = "1"
-tor-bytes = { path = "../tor-bytes", version = "0.22.0" }
-tor-error = { path = "../tor-error", version = "0.22.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.23.0" }
+tor-error = { path = "../tor-error", version = "0.23.0" }
[dev-dependencies]
hex-literal = "0.4"
diff --git a/crates/tor-units/Cargo.toml b/crates/tor-units/Cargo.toml
index b9b436987..6fc859d75 100644
--- a/crates/tor-units/Cargo.toml
+++ b/crates/tor-units/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-units"
-version = "0.22.0"
+version = "0.23.0"
authors = ["Dennis Jackson <[email protected]>"]
edition = "2021"
rust-version = "1.77"