summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/arti-bench/Cargo.toml8
-rw-r--r--crates/arti-client/Cargo.toml54
-rw-r--r--crates/arti-relay/Cargo.toml24
-rw-r--r--crates/arti-rpc-client-core/Cargo.toml12
-rw-r--r--crates/arti-rpcserver/Cargo.toml20
-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.toml2
-rw-r--r--crates/equix/bench/Cargo.lock4
-rw-r--r--crates/fs-mistrust/Cargo.toml2
-rw-r--r--crates/fslock-guard/Cargo.toml2
-rw-r--r--crates/hashx/Cargo.toml2
-rw-r--r--crates/hashx/bench/Cargo.lock2
-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.toml6
-rw-r--r--crates/tor-cell/Cargo.toml20
-rw-r--r--crates/tor-cert/Cargo.toml8
-rw-r--r--crates/tor-chanmgr/Cargo.toml38
-rw-r--r--crates/tor-checkable/Cargo.toml4
-rw-r--r--crates/tor-circmgr/Cargo.toml46
-rw-r--r--crates/tor-config-path/Cargo.toml8
-rw-r--r--crates/tor-config/Cargo.toml10
-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.toml40
-rw-r--r--crates/tor-error/Cargo.toml2
-rw-r--r--crates/tor-general-addr/Cargo.toml2
-rw-r--r--crates/tor-geoip/Cargo.toml2
-rw-r--r--crates/tor-guardmgr/Cargo.toml42
-rw-r--r--crates/tor-hsclient/Cargo.toml60
-rw-r--r--crates/tor-hscrypto/Cargo.toml18
-rw-r--r--crates/tor-hsrproxy/Cargo.toml18
-rw-r--r--crates/tor-hsservice/Cargo.toml58
-rw-r--r--crates/tor-key-forge/Cargo.toml10
-rw-r--r--crates/tor-keymgr/Cargo.toml22
-rw-r--r--crates/tor-linkspec/Cargo.toml14
-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.toml8
-rw-r--r--crates/tor-proto/Cargo.toml36
-rw-r--r--crates/tor-protover/Cargo.toml2
-rw-r--r--crates/tor-ptmgr/Cargo.toml22
-rw-r--r--crates/tor-relay-crypto/Cargo.toml14
-rw-r--r--crates/tor-relay-selection/Cargo.toml18
-rw-r--r--crates/tor-rpc-connect/Cargo.toml10
-rw-r--r--crates/tor-rpcbase/Cargo.toml6
-rw-r--r--crates/tor-rtcompat/Cargo.toml6
-rw-r--r--crates/tor-rtmock/Cargo.toml14
-rw-r--r--crates/tor-socksproto/Cargo.toml6
-rw-r--r--crates/tor-units/Cargo.toml4
61 files changed, 446 insertions, 446 deletions
diff --git a/crates/arti-bench/Cargo.toml b/crates/arti-bench/Cargo.toml
index 9faec2732..cb4275120 100644
--- a/crates/arti-bench/Cargo.toml
+++ b/crates/arti-bench/Cargo.toml
@@ -17,8 +17,8 @@ publish = false
[dependencies]
anyhow = "1.0.23"
-arti = { path = "../arti", version = "1.3.1" }
-arti-client = { package = "arti-client", path = "../arti-client", version = "0.25.0" }
+arti = { path = "../arti", version = "1.3.2" }
+arti-client = { package = "arti-client", path = "../arti-client", version = "0.26.0" }
clap = { version = "4.3.24", features = ["wrap_help"] }
float-ord = "0.3"
fs-mistrust = { path = "../fs-mistrust", version = "0.8.2" }
@@ -28,8 +28,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.25.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0", features = ["tokio", "native-tls"] }
+tor-config = { path = "../tor-config", version = "0.26.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.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 bd9e0eb40..25063ef42 100644
--- a/crates/arti-client/Cargo.toml
+++ b/crates/arti-client/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "arti-client"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -154,31 +154,31 @@ rand = "0.8"
safelog = { path = "../safelog", version = "0.4.2" }
serde = { version = "1.0.103", features = ["derive"] }
thiserror = "2"
-tor-async-utils = { path = "../tor-async-utils", version = "0.25.0" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-chanmgr = { path = "../tor-chanmgr", version = "0.25.0" }
-tor-circmgr = { path = "../tor-circmgr", version = "0.25.0" }
-tor-config = { path = "../tor-config", version = "0.25.0" }
-tor-config-path = { path = "../tor-config-path", version = "0.25.0", features = ["arti-client"] }
-tor-dirmgr = { path = "../tor-dirmgr", version = "0.25.0", default-features = false, features = ["mmap"] }
-tor-error = { path = "../tor-error", version = "0.25.0", features = ["tracing"] }
-tor-geoip = { path = "../tor-geoip", version = "0.25.0", optional = true }
-tor-guardmgr = { path = "../tor-guardmgr", version = "0.25.0" }
-tor-hsclient = { path = "../tor-hsclient", version = "0.25.0", optional = true }
-tor-hscrypto = { path = "../tor-hscrypto", version = "0.25.0", optional = true }
-tor-hsservice = { path = "../tor-hsservice", version = "0.25.0", optional = true }
-tor-keymgr = { path = "../tor-keymgr", version = "0.25.0", default-features = false }
-tor-linkspec = { path = "../tor-linkspec", version = "0.25.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.25.0" }
+tor-async-utils = { path = "../tor-async-utils", version = "0.26.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-chanmgr = { path = "../tor-chanmgr", version = "0.26.0" }
+tor-circmgr = { path = "../tor-circmgr", version = "0.26.0" }
+tor-config = { path = "../tor-config", version = "0.26.0" }
+tor-config-path = { path = "../tor-config-path", version = "0.26.0", features = ["arti-client"] }
+tor-dirmgr = { path = "../tor-dirmgr", version = "0.26.0", default-features = false, features = ["mmap"] }
+tor-error = { path = "../tor-error", version = "0.26.0", features = ["tracing"] }
+tor-geoip = { path = "../tor-geoip", version = "0.26.0", optional = true }
+tor-guardmgr = { path = "../tor-guardmgr", version = "0.26.0" }
+tor-hsclient = { path = "../tor-hsclient", version = "0.26.0", optional = true }
+tor-hscrypto = { path = "../tor-hscrypto", version = "0.26.0", optional = true }
+tor-hsservice = { path = "../tor-hsservice", version = "0.26.0", optional = true }
+tor-keymgr = { path = "../tor-keymgr", version = "0.26.0", default-features = false }
+tor-linkspec = { path = "../tor-linkspec", version = "0.26.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.26.0" }
# tor-memquota dependency is unconditional, but most of the code is behind tor-memquota/memquota
-tor-memquota = { path = "../tor-memquota", version = "0.25.0", default-features = false }
-tor-netdir = { path = "../tor-netdir", version = "0.25.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.25.0" }
-tor-persist = { path = "../tor-persist", version = "0.25.0" }
-tor-proto = { path = "../tor-proto", version = "0.25.0" }
-tor-ptmgr = { path = "../tor-ptmgr", version = "0.25.0", optional = true }
-tor-rpcbase = { path = "../tor-rpcbase", version = "0.25.0", optional = true }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0" }
+tor-memquota = { path = "../tor-memquota", version = "0.26.0", default-features = false }
+tor-netdir = { path = "../tor-netdir", version = "0.26.0" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.26.0" }
+tor-persist = { path = "../tor-persist", version = "0.26.0" }
+tor-proto = { path = "../tor-proto", version = "0.26.0" }
+tor-ptmgr = { path = "../tor-ptmgr", version = "0.26.0", optional = true }
+tor-rpcbase = { path = "../tor-rpcbase", version = "0.26.0", optional = true }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.0" }
tracing = "0.1.36"
visibility = { version = "0.1.0", optional = true }
void = "1"
@@ -197,8 +197,8 @@ tokio-crate = { package = "tokio", version = "1.7", features = [
"macros",
] }
toml = "0.8.8"
-tor-relay-selection = { path = "../tor-relay-selection", version = "0.25.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0", features = ["tokio", "native-tls"] }
+tor-relay-selection = { path = "../tor-relay-selection", version = "0.26.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.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 5de2663c8..5f595c2e6 100644
--- a/crates/arti-relay/Cargo.toml
+++ b/crates/arti-relay/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "arti-relay"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc."]
edition = "2021"
rust-version = "1.77"
@@ -37,18 +37,18 @@ rand = "0.8.5"
serde = { version = "1.0.103", features = ["derive"] }
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "2"
-tor-chanmgr = { path = "../tor-chanmgr", version = "0.25.0" }
-tor-config = { path = "../tor-config", version = "0.25.0" }
-tor-config-path = { path = "../tor-config-path", version = "0.25.0" }
-tor-error = { path = "../tor-error", version = "0.25.0" }
-tor-keymgr = { path = "../tor-keymgr", version = "0.25.0", features = ["keymgr", "ephemeral-keystore"] }
+tor-chanmgr = { path = "../tor-chanmgr", version = "0.26.0" }
+tor-config = { path = "../tor-config", version = "0.26.0" }
+tor-config-path = { path = "../tor-config-path", version = "0.26.0" }
+tor-error = { path = "../tor-error", version = "0.26.0" }
+tor-keymgr = { path = "../tor-keymgr", version = "0.26.0", features = ["keymgr", "ephemeral-keystore"] }
# TODO RELAY compile in memquota tracking by default? with a calculated limit maybe, even?
-tor-memquota = { version = "0.25.0", path = "../tor-memquota", default-features = false }
-tor-netdir = { path = "../tor-netdir", version = "0.25.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.25.0" }
-tor-proto = { path = "../tor-proto", version = "0.25.0", features = ["tokio"] }
-tor-relay-crypto = { path = "../tor-relay-crypto", version = "0.25.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0", features = ["rustls", "tokio"] }
+tor-memquota = { version = "0.26.0", path = "../tor-memquota", default-features = false }
+tor-netdir = { path = "../tor-netdir", version = "0.26.0" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.26.0" }
+tor-proto = { path = "../tor-proto", version = "0.26.0", features = ["tokio"] }
+tor-relay-crypto = { path = "../tor-relay-crypto", version = "0.26.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.0", features = ["rustls", "tokio"] }
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 18a1547e5..6908901c5 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.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -27,10 +27,10 @@ percent-encoding = "2.3.1"
serde = { version = "1.0.103", features = ["derive"] }
serde_json = "1.0.104"
thiserror = "2"
-tor-config-path = { version = "0.25.0", path = "../tor-config-path", features = ["arti-client"] }
-tor-error = { version = "0.25.0", path = "../tor-error", default-features = false }
-tor-rpc-connect = { version = "0.25.0", path = "../tor-rpc-connect", features = ["rpc-client"] }
-tor-socksproto = { path = "../tor-socksproto", version = "0.25.0", default-features = false, features = [
+tor-config-path = { version = "0.26.0", path = "../tor-config-path", features = ["arti-client"] }
+tor-error = { version = "0.26.0", path = "../tor-error", default-features = false }
+tor-rpc-connect = { version = "0.26.0", path = "../tor-rpc-connect", features = ["rpc-client"] }
+tor-socksproto = { path = "../tor-socksproto", version = "0.26.0", default-features = false, features = [
"client-handshake",
] }
void = "1"
@@ -39,7 +39,7 @@ void = "1"
rand = "0.8"
rand_chacha = "0.3"
socketpair = "0.19"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
[features]
full = ["ffi", "caret/full", "tor-socksproto/full", "tor-error/full", "fs-mistrust/full", "tor-config-path/full", "tor-rpc-connect/full"]
diff --git a/crates/arti-rpcserver/Cargo.toml b/crates/arti-rpcserver/Cargo.toml
index 87fa33328..2df4dbd40 100644
--- a/crates/arti-rpcserver/Cargo.toml
+++ b/crates/arti-rpcserver/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "arti-rpcserver"
-version = "0.25.0"
+version = "0.26.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.25.0", features = ["rpc"] }
+arti-client = { path = "../arti-client", version = "0.26.0", features = ["rpc"] }
async-trait = "0.1.54"
asynchronous-codec = { version = "0.7.0", features = ["json"] }
base64ct = "1.5.1"
@@ -44,13 +44,13 @@ serde_json = "1.0.50"
slotmap-careful = { path = "../slotmap-careful", version = "0.2.2" }
thiserror = "2"
tiny-keccak = { version = "2", features = ["kmac"] }
-tor-async-utils = { path = "../tor-async-utils", version = "0.25.0" }
-tor-bytes = { path = "../tor-bytes", version = "0.25.0" }
-tor-error = { path = "../tor-error", version = "0.25.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.25.0" }
-tor-proto = { path = "../tor-proto", version = "0.25.0", features = ["stream-ctrl"] }
-tor-rpcbase = { path = "../tor-rpcbase", version = "0.25.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0" }
+tor-async-utils = { path = "../tor-async-utils", version = "0.26.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.26.0" }
+tor-error = { path = "../tor-error", version = "0.26.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.26.0" }
+tor-proto = { path = "../tor-proto", version = "0.26.0", features = ["stream-ctrl"] }
+tor-rpcbase = { path = "../tor-rpcbase", version = "0.26.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.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.25.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
diff --git a/crates/arti-testing/Cargo.toml b/crates/arti-testing/Cargo.toml
index 0acc9d84e..ac2c79a1a 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.3.1" }
-arti-client = { package = "arti-client", path = "../arti-client", version = "0.25.0", features = ["dirfilter"] }
+arti = { package = "arti", path = "../arti", version = "1.3.2" }
+arti-client = { package = "arti-client", path = "../arti-client", version = "0.26.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.25.0" }
-tor-config = { path = "../tor-config", version = "0.25.0" }
-tor-dirmgr = { package = "tor-dirmgr", path = "../tor-dirmgr", version = "0.25.0", features = ["dirfilter"] }
-tor-netdoc = { package = "tor-netdoc", path = "../tor-netdoc", version = "0.25.0", features = [
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-config = { path = "../tor-config", version = "0.26.0" }
+tor-dirmgr = { package = "tor-dirmgr", path = "../tor-dirmgr", version = "0.26.0", features = ["dirfilter"] }
+tor-netdoc = { package = "tor-netdoc", path = "../tor-netdoc", version = "0.26.0", features = [
"experimental-api",
"dangerous-expose-struct-fields",
] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.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 54840c6ca..70c7832a6 100644
--- a/crates/arti/Cargo.toml
+++ b/crates/arti/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "arti"
-version = "1.3.1"
+version = "1.3.2"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -112,10 +112,10 @@ __is_experimental = []
[dependencies]
anyhow = "1.0.23"
-arti-client = { package = "arti-client", path = "../arti-client", version = "0.25.0", default-features = false, features = [
+arti-client = { package = "arti-client", path = "../arti-client", version = "0.26.0", default-features = false, features = [
"anyhow",
] }
-arti-rpcserver = { path = "../arti-rpcserver", version = "0.25.0", optional = true }
+arti-rpcserver = { path = "../arti-rpcserver", version = "0.26.0", optional = true }
async-ctrlc = { version = "1.2.0", optional = true }
dialoguer = { version = "0.11.0", optional = true }
cfg-if = "1.0.0"
@@ -148,17 +148,17 @@ 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.25.0" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-config = { path = "../tor-config", version = "0.25.0" }
-tor-config-path = { path = "../tor-config-path", version = "0.25.0" }
-tor-error = { path = "../tor-error", version = "0.25.0", default-features = false, features = ["tracing"] }
-tor-hsrproxy = { path = "../tor-hsrproxy", version = "0.25.0", optional = true }
-tor-hsservice = { path = "../tor-hsservice", version = "0.25.0", optional = true }
-tor-rpcbase = { path = "../tor-rpcbase", version = "0.25.0", optional = true }
-tor-rpc-connect = { path = "../tor-rpc-connect", version = "0.25.0", optional = true, features = ["rpc-server"] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0", default-features = false }
-tor-socksproto = { path = "../tor-socksproto", version = "0.25.0" }
+tor-async-utils = { path = "../tor-async-utils", version = "0.26.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-config = { path = "../tor-config", version = "0.26.0" }
+tor-config-path = { path = "../tor-config-path", version = "0.26.0" }
+tor-error = { path = "../tor-error", version = "0.26.0", default-features = false, features = ["tracing"] }
+tor-hsrproxy = { path = "../tor-hsrproxy", version = "0.26.0", optional = true }
+tor-hsservice = { path = "../tor-hsservice", version = "0.26.0", optional = true }
+tor-rpcbase = { path = "../tor-rpcbase", version = "0.26.0", optional = true }
+tor-rpc-connect = { path = "../tor-rpc-connect", version = "0.26.0", optional = true, features = ["rpc-server"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.0", default-features = false }
+tor-socksproto = { path = "../tor-socksproto", version = "0.26.0" }
tracing = "0.1.36"
tracing-appender = "0.2.0"
tracing-journald = { version = "0.3.0", optional = true }
@@ -166,7 +166,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.25.0", default-features = false, features = [
+arti-client = { package = "arti-client", path = "../arti-client", version = "0.26.0", default-features = false, features = [
"testing",
] }
derive_more = { version = "1.0.0", features = ["full"] }
@@ -176,10 +176,10 @@ regex = { version = "1", default-features = false, features = ["std"] }
serde_json = "1.0.50"
tempfile = "3"
test-temp-dir = { version = "0.3.0", path = "../test-temp-dir" }
-tor-async-utils = { version = "0.25.0", path = "../tor-async-utils" }
-tor-config = { path = "../tor-config", version = "0.25.0", features = ["testing"] }
-tor-memquota = { version = "0.25.0", path = "../tor-memquota", default-features = false, features = ["testing"] }
-tor-rtmock = { path = "../tor-rtmock", version = "0.25.0" }
+tor-async-utils = { version = "0.26.0", path = "../tor-async-utils" }
+tor-config = { path = "../tor-config", version = "0.26.0", features = ["testing"] }
+tor-memquota = { version = "0.26.0", path = "../tor-memquota", default-features = false, features = ["testing"] }
+tor-rtmock = { path = "../tor-rtmock", version = "0.26.0" }
trycmd = "0.15.4"
[target.'cfg(windows)'.dependencies]
diff --git a/crates/caret/Cargo.toml b/crates/caret/Cargo.toml
index ef75cb791..63bc82a24 100644
--- a/crates/caret/Cargo.toml
+++ b/crates/caret/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "caret"
-version = "0.5.0"
+version = "0.5.1"
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 45cbfd772..5bd865540 100644
--- a/crates/equix/Cargo.toml
+++ b/crates/equix/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "equix"
-version = "0.2.1"
+version = "0.2.2"
authors = ["The Tor Project, Inc.", "Micah Elizabeth Scott <[email protected]>"]
edition = "2021"
rust-version = "1.77"
diff --git a/crates/equix/bench/Cargo.lock b/crates/equix/bench/Cargo.lock
index 851a4e0cc..8e3b69f79 100644
--- a/crates/equix/bench/Cargo.lock
+++ b/crates/equix/bench/Cargo.lock
@@ -312,7 +312,7 @@ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
[[package]]
name = "equix"
-version = "0.2.1"
+version = "0.2.2"
dependencies = [
"arrayvec",
"hashx",
@@ -392,7 +392,7 @@ dependencies = [
[[package]]
name = "hashx"
-version = "0.2.1"
+version = "0.2.2"
dependencies = [
"arrayvec",
"blake2",
diff --git a/crates/fs-mistrust/Cargo.toml b/crates/fs-mistrust/Cargo.toml
index 559d7d4a4..3a4d8d956 100644
--- a/crates/fs-mistrust/Cargo.toml
+++ b/crates/fs-mistrust/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "fs-mistrust"
-version = "0.8.2"
+version = "0.8.3"
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 7891b84b3..7ff3057aa 100644
--- a/crates/fslock-guard/Cargo.toml
+++ b/crates/fslock-guard/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "fslock-guard"
-version = "0.2.1"
+version = "0.2.2"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
diff --git a/crates/hashx/Cargo.toml b/crates/hashx/Cargo.toml
index 5c989917c..bd4cda2b9 100644
--- a/crates/hashx/Cargo.toml
+++ b/crates/hashx/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "hashx"
-version = "0.2.1"
+version = "0.2.2"
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 5445ea874..8610021c9 100644
--- a/crates/hashx/bench/Cargo.lock
+++ b/crates/hashx/bench/Cargo.lock
@@ -371,7 +371,7 @@ dependencies = [
[[package]]
name = "hashx"
-version = "0.2.1"
+version = "0.2.2"
dependencies = [
"arrayvec",
"blake2",
diff --git a/crates/oneshot-fused-workaround/Cargo.toml b/crates/oneshot-fused-workaround/Cargo.toml
index 17b2d85e7..60d7b09a4 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.2.0"
+version = "0.2.1"
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 cd7c91473..c51dfe67d 100644
--- a/crates/retry-error/Cargo.toml
+++ b/crates/retry-error/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "retry-error"
-version = "0.6.1"
+version = "0.6.2"
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 1ac8580a1..62c113fa0 100644
--- a/crates/safelog/Cargo.toml
+++ b/crates/safelog/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "safelog"
-version = "0.4.2"
+version = "0.4.3"
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 e4ab27445..4d6f5d496 100644
--- a/crates/slotmap-careful/Cargo.toml
+++ b/crates/slotmap-careful/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "slotmap-careful"
-version = "0.2.2"
+version = "0.2.3"
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 aa71c347f..c6a9be178 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.3.0"
+version = "0.3.1"
# 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 e7f739545..2f135cc8d 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.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -25,9 +25,9 @@ void = "1"
[dev-dependencies]
futures-await-test = "0.3.0"
tokio = { version = "1.7", features = ["macros", "net", "rt", "rt-multi-thread", "time"] }
-tor-error = { path = "../tor-error", version = "0.25.0" }
-tor-rtcompat = { version = "0.25.0", path = "../tor-rtcompat" }
-tor-rtmock = { path = "../tor-rtmock", version = "0.25.0" }
+tor-error = { path = "../tor-error", version = "0.26.0" }
+tor-rtcompat = { version = "0.26.0", path = "../tor-rtcompat" }
+tor-rtmock = { path = "../tor-rtmock", version = "0.26.0" }
[features]
full = ["oneshot-fused-workaround/full"]
diff --git a/crates/tor-basic-utils/Cargo.toml b/crates/tor-basic-utils/Cargo.toml
index bdd198279..e2572f0b7 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.25.0"
+version = "0.26.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 2e30dd305..faed1a0ca 100644
--- a/crates/tor-bytes/Cargo.toml
+++ b/crates/tor-bytes/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-bytes"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -18,8 +18,8 @@ digest = { version = "0.10.0", features = ["subtle", "mac"] }
educe = "0.4.6"
safelog = { path = "../safelog", version = "0.4.2" }
thiserror = "2"
-tor-error = { path = "../tor-error", version = "0.25.0", default-features = false }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.25.0", optional = true }
+tor-error = { path = "../tor-error", version = "0.26.0", default-features = false }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.26.0", optional = true }
zeroize = { version = "1", features = ["derive"] }
[dev-dependencies]
diff --git a/crates/tor-cell/Cargo.toml b/crates/tor-cell/Cargo.toml
index be61c0121..821d561ea 100644
--- a/crates/tor-cell/Cargo.toml
+++ b/crates/tor-cell/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-cell"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -58,15 +58,15 @@ paste = "1"
rand = "0.8"
smallvec = "1.10"
thiserror = "2"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-bytes = { path = "../tor-bytes", version = "0.25.0" }
-tor-cert = { path = "../tor-cert", version = "0.25.0" }
-tor-error = { path = "../tor-error", version = "0.25.0" }
-tor-hscrypto = { path = "../tor-hscrypto", version = "0.25.0", optional = true, features = ["memquota-memcost"] }
-tor-linkspec = { path = "../tor-linkspec", version = "0.25.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.25.0", features = ["memquota-memcost"] }
-tor-memquota = { version = "0.25.0", path = "../tor-memquota", default-features = false }
-tor-units = { path = "../tor-units", version = "0.25.0", features = ["memquota-memcost"] }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.26.0" }
+tor-cert = { path = "../tor-cert", version = "0.26.0" }
+tor-error = { path = "../tor-error", version = "0.26.0" }
+tor-hscrypto = { path = "../tor-hscrypto", version = "0.26.0", optional = true, features = ["memquota-memcost"] }
+tor-linkspec = { path = "../tor-linkspec", version = "0.26.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.26.0", features = ["memquota-memcost"] }
+tor-memquota = { version = "0.26.0", path = "../tor-memquota", default-features = false }
+tor-units = { path = "../tor-units", version = "0.26.0", features = ["memquota-memcost"] }
void = "1"
[dev-dependencies]
diff --git a/crates/tor-cert/Cargo.toml b/crates/tor-cert/Cargo.toml
index ab29f7d6b..6f0812ec4 100644
--- a/crates/tor-cert/Cargo.toml
+++ b/crates/tor-cert/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-cert"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -31,9 +31,9 @@ derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti", opt
derive_more = { version = "1.0.0", features = ["full"] }
digest = "0.10.0"
thiserror = "2"
-tor-bytes = { path = "../tor-bytes", version = "0.25.0" }
-tor-checkable = { path = "../tor-checkable", version = "0.25.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.25.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.26.0" }
+tor-checkable = { path = "../tor-checkable", version = "0.26.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.26.0" }
[dev-dependencies]
base64ct = "1.5.1"
diff --git a/crates/tor-chanmgr/Cargo.toml b/crates/tor-chanmgr/Cargo.toml
index dab48524a..acd37f35d 100644
--- a/crates/tor-chanmgr/Cargo.toml
+++ b/crates/tor-chanmgr/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-chanmgr"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -52,21 +52,21 @@ rand = "0.8"
safelog = { path = "../safelog", version = "0.4.2" }
serde = { version = "1.0.103", features = ["derive"] }
thiserror = "2"
-tor-async-utils = { version = "0.25.0", path = "../tor-async-utils" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-cell = { path = "../tor-cell", version = "0.25.0" }
-tor-config = { path = "../tor-config", version = "0.25.0" }
-tor-error = { path = "../tor-error", version = "0.25.0", features = ["tracing"] }
-tor-linkspec = { path = "../tor-linkspec", version = "0.25.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.25.0" }
-tor-memquota = { version = "0.25.0", path = "../tor-memquota", default-features = false }
-tor-netdir = { path = "../tor-netdir", version = "0.25.0" }
-tor-proto = { path = "../tor-proto", version = "0.25.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0" }
-tor-socksproto = { path = "../tor-socksproto", version = "0.25.0", default-features = false, features = [
+tor-async-utils = { version = "0.26.0", path = "../tor-async-utils" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-cell = { path = "../tor-cell", version = "0.26.0" }
+tor-config = { path = "../tor-config", version = "0.26.0" }
+tor-error = { path = "../tor-error", version = "0.26.0", features = ["tracing"] }
+tor-linkspec = { path = "../tor-linkspec", version = "0.26.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.26.0" }
+tor-memquota = { version = "0.26.0", path = "../tor-memquota", default-features = false }
+tor-netdir = { path = "../tor-netdir", version = "0.26.0" }
+tor-proto = { path = "../tor-proto", version = "0.26.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.0" }
+tor-socksproto = { path = "../tor-socksproto", version = "0.26.0", default-features = false, features = [
"client-handshake",
] }
-tor-units = { path = "../tor-units", version = "0.25.0" }
+tor-units = { path = "../tor-units", version = "0.26.0" }
tracing = "0.1.36"
void = "1"
@@ -75,10 +75,10 @@ float_eq = "1.0.0"
futures-await-test = "0.3.0"
hex-literal = "0.4"
itertools = "0.14.0"
-tor-cell = { path = "../tor-cell", version = "0.25.0", features = ["testing"] }
-tor-netdir = { path = "../tor-netdir", version = "0.25.0", features = ["testing"] }
-tor-proto = { path = "../tor-proto", version = "0.25.0", features = ["testing"] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0", features = ["tokio", "native-tls"] }
-tor-rtmock = { path = "../tor-rtmock", version = "0.25.0" }
+tor-cell = { path = "../tor-cell", version = "0.26.0", features = ["testing"] }
+tor-netdir = { path = "../tor-netdir", version = "0.26.0", features = ["testing"] }
+tor-proto = { path = "../tor-proto", version = "0.26.0", features = ["testing"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.0", features = ["tokio", "native-tls"] }
+tor-rtmock = { path = "../tor-rtmock", version = "0.26.0" }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-checkable/Cargo.toml b/crates/tor-checkable/Cargo.toml
index 6c9549f72..e683ee2ef 100644
--- a/crates/tor-checkable/Cargo.toml
+++ b/crates/tor-checkable/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-checkable"
-version = "0.25.0"
+version = "0.26.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 = "2"
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.25.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.26.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 5247e1bf0..bb30c84df 100644
--- a/crates/tor-circmgr/Cargo.toml
+++ b/crates/tor-circmgr/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-circmgr"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -81,22 +81,22 @@ safelog = { path = "../safelog", version = "0.4.2" }
serde = { version = "1.0.103", features = ["derive"] }
static_assertions = "1"
thiserror = "2"
-tor-async-utils = { version = "0.25.0", path = "../tor-async-utils" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-chanmgr = { path = "../tor-chanmgr", version = "0.25.0" }
-tor-config = { path = "../tor-config", version = "0.25.0" }
-tor-error = { path = "../tor-error", version = "0.25.0", features = ["tracing"] }
-tor-geoip = { path = "../tor-geoip", version = "0.25.0", optional = true }
-tor-guardmgr = { path = "../tor-guardmgr", version = "0.25.0" }
-tor-linkspec = { path = "../tor-linkspec", version = "0.25.0" }
-tor-memquota = { version = "0.25.0", path = "../tor-memquota", default-features = false }
-tor-netdir = { path = "../tor-netdir", version = "0.25.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.25.0" }
-tor-persist = { path = "../tor-persist", version = "0.25.0" }
-tor-proto = { path = "../tor-proto", version = "0.25.0" }
-tor-protover = { path = "../tor-protover", version = "0.25.0" }
-tor-relay-selection = { path = "../tor-relay-selection", version = "0.25.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0" }
+tor-async-utils = { version = "0.26.0", path = "../tor-async-utils" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-chanmgr = { path = "../tor-chanmgr", version = "0.26.0" }
+tor-config = { path = "../tor-config", version = "0.26.0" }
+tor-error = { path = "../tor-error", version = "0.26.0", features = ["tracing"] }
+tor-geoip = { path = "../tor-geoip", version = "0.26.0", optional = true }
+tor-guardmgr = { path = "../tor-guardmgr", version = "0.26.0" }
+tor-linkspec = { path = "../tor-linkspec", version = "0.26.0" }
+tor-memquota = { version = "0.26.0", path = "../tor-memquota", default-features = false }
+tor-netdir = { path = "../tor-netdir", version = "0.26.0" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.26.0" }
+tor-persist = { path = "../tor-persist", version = "0.26.0" }
+tor-proto = { path = "../tor-proto", version = "0.26.0" }
+tor-protover = { path = "../tor-protover", version = "0.26.0" }
+tor-relay-selection = { path = "../tor-relay-selection", version = "0.26.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.0" }
tracing = "0.1.36"
visibility = { version = "0.1.0", optional = true }
void = "1.0"
@@ -105,11 +105,11 @@ weak-table = "0.3.0"
[dev-dependencies]
futures-await-test = "0.3.0"
hex = "0.4"
-tor-guardmgr = { path = "../tor-guardmgr", version = "0.25.0", features = ["testing", "vanguards"] }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.25.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.25.0", features = ["testing"] }
-tor-persist = { path = "../tor-persist", version = "0.25.0", features = ["testing"] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0", features = ["tokio", "native-tls"] }
-tor-rtmock = { path = "../tor-rtmock", version = "0.25.0" }
+tor-guardmgr = { path = "../tor-guardmgr", version = "0.26.0", features = ["testing", "vanguards"] }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.26.0" }
+tor-netdir = { path = "../tor-netdir", version = "0.26.0", features = ["testing"] }
+tor-persist = { path = "../tor-persist", version = "0.26.0", features = ["testing"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.0", features = ["tokio", "native-tls"] }
+tor-rtmock = { path = "../tor-rtmock", version = "0.26.0" }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-config-path/Cargo.toml b/crates/tor-config-path/Cargo.toml
index f19e171f6..f88bf5d81 100644
--- a/crates/tor-config-path/Cargo.toml
+++ b/crates/tor-config-path/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-config-path"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -39,8 +39,8 @@ once_cell = "1"
serde = { version = "1.0.103", features = ["derive"] }
shellexpand = { version = "3.0", optional = true, features = ["path"] }
thiserror = "2"
-tor-error = { path = "../tor-error", version = "0.25.0" }
-tor-general-addr = { path = "../tor-general-addr", version = "0.25.0", optional = true }
+tor-error = { path = "../tor-error", version = "0.26.0" }
+tor-general-addr = { path = "../tor-general-addr", version = "0.26.0", optional = true }
[dev-dependencies]
assert_matches = "1.5.0"
@@ -49,7 +49,7 @@ dirs = "5.0.0"
rmp-serde = "1"
serde_json = "1.0.50"
toml = "0.8.8"
-tor-config = { path = "../tor-config", version = "0.25.0" }
+tor-config = { path = "../tor-config", version = "0.26.0" }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-config/Cargo.toml b/crates/tor-config/Cargo.toml
index af430af59..9e902b80e 100644
--- a/crates/tor-config/Cargo.toml
+++ b/crates/tor-config/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-config"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -51,9 +51,9 @@ serde_ignored = "0.1.3"
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "2"
toml = "0.8.8"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-error = { path = "../tor-error", version = "0.25.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-error = { path = "../tor-error", version = "0.26.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.0" }
tracing = "0.1.36"
void = "1"
@@ -61,7 +61,7 @@ void = "1"
serde_json = "1.0.50"
tempfile = "3"
test-temp-dir = { version = "0.3.0", path = "../test-temp-dir" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0", features = ["tokio", "native-tls"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.0", features = ["tokio", "native-tls"] }
tracing-test = "0.2.4"
[package.metadata.docs.rs]
diff --git a/crates/tor-congestion/Cargo.toml b/crates/tor-congestion/Cargo.toml
index 215b51492..aae080399 100644
--- a/crates/tor-congestion/Cargo.toml
+++ b/crates/tor-congestion/Cargo.toml
@@ -16,9 +16,9 @@ publish = false
[dependencies]
thiserror = "2"
-tor-error = { path = "../tor-error", version = "0.25.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.25.0" }
-tor-units = { path = "../tor-units", version = "0.25.0" }
+tor-error = { path = "../tor-error", version = "0.26.0" }
+tor-netdir = { path = "../tor-netdir", version = "0.26.0" }
+tor-units = { path = "../tor-units", version = "0.26.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 c4d7ea247..accd0a20f 100644
--- a/crates/tor-consdiff/Cargo.toml
+++ b/crates/tor-consdiff/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-consdiff"
-version = "0.25.0"
+version = "0.26.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 = "2"
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.25.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.26.0" }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-dirclient/Cargo.toml b/crates/tor-dirclient/Cargo.toml
index 73ec98c86..94023b1df 100644
--- a/crates/tor-dirclient/Cargo.toml
+++ b/crates/tor-dirclient/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-dirclient"
-version = "0.25.0"
+version = "0.26.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.14.0"
memchr = "2.5"
thiserror = "2"
-tor-circmgr = { path = "../tor-circmgr", version = "0.25.0" }
-tor-error = { path = "../tor-error", version = "0.25.0" }
-tor-hscrypto = { path = "../tor-hscrypto", version = "0.25.0", optional = true }
-tor-linkspec = { path = "../tor-linkspec", version = "0.25.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.25.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.25.0" }
-tor-proto = { path = "../tor-proto", version = "0.25.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0" }
+tor-circmgr = { path = "../tor-circmgr", version = "0.26.0" }
+tor-error = { path = "../tor-error", version = "0.26.0" }
+tor-hscrypto = { path = "../tor-hscrypto", version = "0.26.0", optional = true }
+tor-linkspec = { path = "../tor-linkspec", version = "0.26.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.26.0" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.26.0" }
+tor-proto = { path = "../tor-proto", version = "0.26.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.0" }
tracing = "0.1.36"
[dev-dependencies]
futures-await-test = "0.3.0"
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0", features = ["tokio", "native-tls"] }
-tor-rtmock = { path = "../tor-rtmock", version = "0.25.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.0", features = ["tokio", "native-tls"] }
+tor-rtmock = { path = "../tor-rtmock", version = "0.26.0" }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-dirmgr/Cargo.toml b/crates/tor-dirmgr/Cargo.toml
index a1141bbf8..59db77872 100644
--- a/crates/tor-dirmgr/Cargo.toml
+++ b/crates/tor-dirmgr/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-dirmgr"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -86,22 +86,22 @@ signature = "2"
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "2"
time = { version = "0.3.20", features = ["formatting", "parsing"] }
-tor-async-utils = { version = "0.25.0", path = "../tor-async-utils" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-checkable = { path = "../tor-checkable", version = "0.25.0" }
-tor-circmgr = { path = "../tor-circmgr", version = "0.25.0" }
-tor-config = { path = "../tor-config", version = "0.25.0" }
-tor-consdiff = { path = "../tor-consdiff", version = "0.25.0" }
-tor-dirclient = { path = "../tor-dirclient", version = "0.25.0", default-features = false }
-tor-error = { path = "../tor-error", version = "0.25.0", features = ["tracing"] }
-tor-geoip = { path = "../tor-geoip", version = "0.25.0", optional = true }
-tor-guardmgr = { path = "../tor-guardmgr", version = "0.25.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.25.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.25.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.25.0" }
-tor-persist = { path = "../tor-persist", version = "0.25.0" }
-tor-proto = { path = "../tor-proto", version = "0.25.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0" }
+tor-async-utils = { version = "0.26.0", path = "../tor-async-utils" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-checkable = { path = "../tor-checkable", version = "0.26.0" }
+tor-circmgr = { path = "../tor-circmgr", version = "0.26.0" }
+tor-config = { path = "../tor-config", version = "0.26.0" }
+tor-consdiff = { path = "../tor-consdiff", version = "0.26.0" }
+tor-dirclient = { path = "../tor-dirclient", version = "0.26.0", default-features = false }
+tor-error = { path = "../tor-error", version = "0.26.0", features = ["tracing"] }
+tor-geoip = { path = "../tor-geoip", version = "0.26.0", optional = true }
+tor-guardmgr = { path = "../tor-guardmgr", version = "0.26.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.26.0" }
+tor-netdir = { path = "../tor-netdir", version = "0.26.0" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.26.0" }
+tor-persist = { path = "../tor-persist", version = "0.26.0" }
+tor-proto = { path = "../tor-proto", version = "0.26.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.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.25.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0", features = ["tokio", "native-tls"] }
-tor-rtmock = { path = "../tor-rtmock", version = "0.25.0" }
+tor-linkspec = { path = "../tor-linkspec", version = "0.26.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.0", features = ["tokio", "native-tls"] }
+tor-rtmock = { path = "../tor-rtmock", version = "0.26.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 e83fdcf68..439b96fe8 100644
--- a/crates/tor-error/Cargo.toml
+++ b/crates/tor-error/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-error"
-version = "0.25.0"
+version = "0.26.0"
authors = ["Ian Jackson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
diff --git a/crates/tor-general-addr/Cargo.toml b/crates/tor-general-addr/Cargo.toml
index 948dcd7a6..bb417d087 100644
--- a/crates/tor-general-addr/Cargo.toml
+++ b/crates/tor-general-addr/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-general-addr"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
diff --git a/crates/tor-geoip/Cargo.toml b/crates/tor-geoip/Cargo.toml
index 7d5ddbea5..d499a480b 100644
--- a/crates/tor-geoip/Cargo.toml
+++ b/crates/tor-geoip/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-geoip"
-version = "0.25.0"
+version = "0.26.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 395fbc7a7..2f99294bb 100644
--- a/crates/tor-guardmgr/Cargo.toml
+++ b/crates/tor-guardmgr/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-guardmgr"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -73,21 +73,21 @@ safelog = { path = "../safelog", version = "0.4.2" }
serde = { version = "1.0.103", features = ["derive"] }
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "2"
-tor-async-utils = { version = "0.25.0", path = "../tor-async-utils" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-config = { path = "../tor-config", version = "0.25.0" }
-tor-error = { path = "../tor-error", version = "0.25.0" }
-tor-linkspec = { path = "../tor-linkspec", version = "0.25.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.25.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.25.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.25.0" } # for address pattern
-tor-persist = { path = "../tor-persist", version = "0.25.0" }
-tor-proto = { path = "../tor-proto", version = "0.25.0" }
-tor-protover = { path = "../tor-protover", version = "0.25.0", optional = true }
-tor-relay-selection = { path = "../tor-relay-selection", version = "0.25.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0" }
-tor-rtmock = { path = "../tor-rtmock", version = "0.25.0", optional = true }
-tor-units = { path = "../tor-units", version = "0.25.0" }
+tor-async-utils = { version = "0.26.0", path = "../tor-async-utils" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-config = { path = "../tor-config", version = "0.26.0" }
+tor-error = { path = "../tor-error", version = "0.26.0" }
+tor-linkspec = { path = "../tor-linkspec", version = "0.26.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.26.0" }
+tor-netdir = { path = "../tor-netdir", version = "0.26.0" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.26.0" } # for address pattern
+tor-persist = { path = "../tor-persist", version = "0.26.0" }
+tor-proto = { path = "../tor-proto", version = "0.26.0" }
+tor-protover = { path = "../tor-protover", version = "0.26.0", optional = true }
+tor-relay-selection = { path = "../tor-relay-selection", version = "0.26.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.0" }
+tor-rtmock = { path = "../tor-rtmock", version = "0.26.0", optional = true }
+tor-units = { path = "../tor-units", version = "0.26.0" }
tracing = "0.1.36"
[dev-dependencies]
@@ -96,11 +96,11 @@ fs-mistrust = { path = "../fs-mistrust", version = "0.8.2" }
serde_json = "1.0.50"
tempfile = "3"
toml = "0.8.8"
-tor-netdir = { path = "../tor-netdir", version = "0.25.0", features = ["testing"] }
-tor-netdoc = { path = "../tor-netdoc", version = "0.25.0" }
-tor-persist = { path = "../tor-persist", version = "0.25.0", features = ["testing"] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0", features = ["tokio", "native-tls"] }
-tor-rtmock = { path = "../tor-rtmock", version = "0.25.0" }
+tor-netdir = { path = "../tor-netdir", version = "0.26.0", features = ["testing"] }
+tor-netdoc = { path = "../tor-netdoc", version = "0.26.0" }
+tor-persist = { path = "../tor-persist", version = "0.26.0", features = ["testing"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.0", features = ["tokio", "native-tls"] }
+tor-rtmock = { path = "../tor-rtmock", version = "0.26.0" }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-hsclient/Cargo.toml b/crates/tor-hsclient/Cargo.toml
index fc02f6b27..c2b8d5880 100644
--- a/crates/tor-hsclient/Cargo.toml
+++ b/crates/tor-hsclient/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-hsclient"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -63,38 +63,38 @@ safelog = { path = "../safelog", version = "0.4.2" }
slotmap-careful = { path = "../slotmap-careful", version = "0.2.2" }
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "2"
-tor-async-utils = { version = "0.25.0", path = "../tor-async-utils" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-bytes = { path = "../tor-bytes", version = "0.25.0" }
-tor-cell = { path = "../tor-cell", version = "0.25.0", features = ["hs"] }
-tor-checkable = { path = "../tor-checkable", version = "0.25.0" }
-tor-circmgr = { version = "0.25.0", path = "../tor-circmgr", features = ["hs-client"] }
-tor-config = { path = "../tor-config", version = "0.25.0" }
-tor-dirclient = { path = "../tor-dirclient", version = "0.25.0", default-features = false, features = ["hs-client"] }
-tor-error = { path = "../tor-error", version = "0.25.0", features = ["tracing"] }
-tor-hscrypto = { version = "0.25.0", path = "../tor-hscrypto" }
-tor-keymgr = { version = "0.25.0", path = "../tor-keymgr", default-features = false }
-tor-linkspec = { version = "0.25.0", path = "../tor-linkspec", features = ["decode", "verbatim"] }
-tor-llcrypto = { version = "0.25.0", path = "../tor-llcrypto" }
-tor-memquota = { version = "0.25.0", path = "../tor-memquota", default-features = false }
-tor-netdir = { version = "0.25.0", path = "../tor-netdir", features = ["hs-client"] }
-tor-netdoc = { path = "../tor-netdoc", version = "0.25.0", features = ["hs-client"] }
-tor-persist = { path = "../tor-persist", version = "0.25.0" }
-tor-proto = { version = "0.25.0", path = "../tor-proto", features = ["hs-client", "send-control-msg"] }
-tor-rtcompat = { version = "0.25.0", path = "../tor-rtcompat" }
+tor-async-utils = { version = "0.26.0", path = "../tor-async-utils" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.26.0" }
+tor-cell = { path = "../tor-cell", version = "0.26.0", features = ["hs"] }
+tor-checkable = { path = "../tor-checkable", version = "0.26.0" }
+tor-circmgr = { version = "0.26.0", path = "../tor-circmgr", features = ["hs-client"] }
+tor-config = { path = "../tor-config", version = "0.26.0" }
+tor-dirclient = { path = "../tor-dirclient", version = "0.26.0", default-features = false, features = ["hs-client"] }
+tor-error = { path = "../tor-error", version = "0.26.0", features = ["tracing"] }
+tor-hscrypto = { version = "0.26.0", path = "../tor-hscrypto" }
+tor-keymgr = { version = "0.26.0", path = "../tor-keymgr", default-features = false }
+tor-linkspec = { version = "0.26.0", path = "../tor-linkspec", features = ["decode", "verbatim"] }
+tor-llcrypto = { version = "0.26.0", path = "../tor-llcrypto" }
+tor-memquota = { version = "0.26.0", path = "../tor-memquota", default-features = false }
+tor-netdir = { version = "0.26.0", path = "../tor-netdir", features = ["hs-client"] }
+tor-netdoc = { path = "../tor-netdoc", version = "0.26.0", features = ["hs-client"] }
+tor-persist = { path = "../tor-persist", version = "0.26.0" }
+tor-proto = { version = "0.26.0", path = "../tor-proto", features = ["hs-client", "send-control-msg"] }
+tor-rtcompat = { version = "0.26.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.25.0" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-chanmgr = { path = "../tor-chanmgr", version = "0.25.0" }
-tor-circmgr = { version = "0.25.0", path = "../tor-circmgr", features = ["hs-client", "testing"] }
-tor-guardmgr = { path = "../tor-guardmgr", version = "0.25.0", features = ["testing"] }
-tor-netdir = { path = "../tor-netdir", version = "0.25.0", features = ["testing"] }
-tor-netdoc = { path = "../tor-netdoc", version = "0.25.0", features = ["testing"] }
-tor-persist = { path = "../tor-persist", version = "0.25.0", features = ["testing"] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0", features = ["tokio", "native-tls"] }
-tor-rtmock = { path = "../tor-rtmock", version = "0.25.0" }
+tor-async-utils = { path = "../tor-async-utils", version = "0.26.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-chanmgr = { path = "../tor-chanmgr", version = "0.26.0" }
+tor-circmgr = { version = "0.26.0", path = "../tor-circmgr", features = ["hs-client", "testing"] }
+tor-guardmgr = { path = "../tor-guardmgr", version = "0.26.0", features = ["testing"] }
+tor-netdir = { path = "../tor-netdir", version = "0.26.0", features = ["testing"] }
+tor-netdoc = { path = "../tor-netdoc", version = "0.26.0", features = ["testing"] }
+tor-persist = { path = "../tor-persist", version = "0.26.0", features = ["testing"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.0", features = ["tokio", "native-tls"] }
+tor-rtmock = { path = "../tor-rtmock", version = "0.26.0" }
tracing-test = "0.2.4"
diff --git a/crates/tor-hscrypto/Cargo.toml b/crates/tor-hscrypto/Cargo.toml
index 27a7cf88a..6820c84c2 100644
--- a/crates/tor-hscrypto/Cargo.toml
+++ b/crates/tor-hscrypto/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-hscrypto"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -53,13 +53,13 @@ safelog = { path = "../safelog", version = "0.4.2" }
signature = "2"
subtle = "2"
thiserror = "2"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-bytes = { version = "0.25.0", path = "../tor-bytes" }
-tor-error = { version = "0.25.0", path = "../tor-error" }
-tor-key-forge = { version = "0.25.0", path = "../tor-key-forge" }
-tor-llcrypto = { version = "0.25.0", path = "../tor-llcrypto", features = ["hsv3-client", "hsv3-service"] }
-tor-memquota = { version = "0.25.0", path = "../tor-memquota", default-features = false, optional = true }
-tor-units = { path = "../tor-units", version = "0.25.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-bytes = { version = "0.26.0", path = "../tor-bytes" }
+tor-error = { version = "0.26.0", path = "../tor-error" }
+tor-key-forge = { version = "0.26.0", path = "../tor-key-forge" }
+tor-llcrypto = { version = "0.26.0", path = "../tor-llcrypto", features = ["hsv3-client", "hsv3-service"] }
+tor-memquota = { version = "0.26.0", path = "../tor-memquota", default-features = false, optional = true }
+tor-units = { path = "../tor-units", version = "0.26.0" }
void = "1"
zeroize = { version = "1", optional = true }
@@ -67,7 +67,7 @@ zeroize = { version = "1", optional = true }
hex = "0.4"
hex-literal = "0.4"
humantime = "2"
-tor-basic-utils = { version = "0.25.0", path = "../tor-basic-utils" }
+tor-basic-utils = { version = "0.26.0", path = "../tor-basic-utils" }
[[test]]
name = "pow_v1_vectors"
diff --git a/crates/tor-hsrproxy/Cargo.toml b/crates/tor-hsrproxy/Cargo.toml
index 15ae1140e..f1da93fee 100644
--- a/crates/tor-hsrproxy/Cargo.toml
+++ b/crates/tor-hsrproxy/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-hsrproxy"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -47,14 +47,14 @@ safelog = { version = "0.4.2", path = "../safelog" }
serde = { version = "1.0.103", features = ["derive"] }
serde_with = "3.0.0"
thiserror = "2"
-tor-async-utils = { version = "0.25.0", path = "../tor-async-utils" }
-tor-cell = { version = "0.25.0", path = "../tor-cell" }
-tor-config = { version = "0.25.0", path = "../tor-config" }
-tor-error = { version = "0.25.0", path = "../tor-error" }
-tor-hsservice = { path = "../tor-hsservice", version = "0.25.0" }
-tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.25.0" }
-tor-proto = { version = "0.25.0", path = "../tor-proto", features = ["hs-service"] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0" }
+tor-async-utils = { version = "0.26.0", path = "../tor-async-utils" }
+tor-cell = { version = "0.26.0", path = "../tor-cell" }
+tor-config = { version = "0.26.0", path = "../tor-config" }
+tor-error = { version = "0.26.0", path = "../tor-error" }
+tor-hsservice = { path = "../tor-hsservice", version = "0.26.0" }
+tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.26.0" }
+tor-proto = { version = "0.26.0", path = "../tor-proto", features = ["hs-service"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.0" }
tracing = "0.1.36"
void = "1"
diff --git a/crates/tor-hsservice/Cargo.toml b/crates/tor-hsservice/Cargo.toml
index 237850b9c..bb3511bd3 100644
--- a/crates/tor-hsservice/Cargo.toml
+++ b/crates/tor-hsservice/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-hsservice"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -92,31 +92,31 @@ serde = { version = "1.0.103", features = ["derive"] }
serde_with = "3.0.0"
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "2"
-tor-async-utils = { path = "../tor-async-utils", version = "0.25.0" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-bytes = { version = "0.25.0", path = "../tor-bytes" }
-tor-cell = { version = "0.25.0", path = "../tor-cell", features = ["hs"] }
-tor-circmgr = { version = "0.25.0", path = "../tor-circmgr", features = ["hs-service"] }
-tor-config = { version = "0.25.0", path = "../tor-config" }
-tor-config-path = { version = "0.25.0", path = "../tor-config-path" }
-tor-dirclient = { path = "../tor-dirclient", version = "0.25.0", default-features = false, features = ["hs-service"] }
-tor-error = { version = "0.25.0", path = "../tor-error" }
-tor-hscrypto = { version = "0.25.0", path = "../tor-hscrypto", features = ["ope"] }
-tor-keymgr = { version = "0.25.0", path = "../tor-keymgr", features = ["keymgr"] }
-tor-linkspec = { version = "0.25.0", path = "../tor-linkspec", features = ["verbatim", "decode"] }
-tor-llcrypto = { version = "0.25.0", path = "../tor-llcrypto" }
-tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.25.0" }
-tor-netdir = { version = "0.25.0", path = "../tor-netdir", features = ["hs-service"] }
-tor-netdoc = { version = "0.25.0", path = "../tor-netdoc", features = ["hs-service"] }
-tor-persist = { version = "0.25.0", path = "../tor-persist", features = ["state-dir"] }
-tor-proto = { version = "0.25.0", path = "../tor-proto", features = [
+tor-async-utils = { path = "../tor-async-utils", version = "0.26.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-bytes = { version = "0.26.0", path = "../tor-bytes" }
+tor-cell = { version = "0.26.0", path = "../tor-cell", features = ["hs"] }
+tor-circmgr = { version = "0.26.0", path = "../tor-circmgr", features = ["hs-service"] }
+tor-config = { version = "0.26.0", path = "../tor-config" }
+tor-config-path = { version = "0.26.0", path = "../tor-config-path" }
+tor-dirclient = { path = "../tor-dirclient", version = "0.26.0", default-features = false, features = ["hs-service"] }
+tor-error = { version = "0.26.0", path = "../tor-error" }
+tor-hscrypto = { version = "0.26.0", path = "../tor-hscrypto", features = ["ope"] }
+tor-keymgr = { version = "0.26.0", path = "../tor-keymgr", features = ["keymgr"] }
+tor-linkspec = { version = "0.26.0", path = "../tor-linkspec", features = ["verbatim", "decode"] }
+tor-llcrypto = { version = "0.26.0", path = "../tor-llcrypto" }
+tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.26.0" }
+tor-netdir = { version = "0.26.0", path = "../tor-netdir", features = ["hs-service"] }
+tor-netdoc = { version = "0.26.0", path = "../tor-netdoc", features = ["hs-service"] }
+tor-persist = { version = "0.26.0", path = "../tor-persist", features = ["state-dir"] }
+tor-proto = { version = "0.26.0", path = "../tor-proto", features = [
"experimental-api",
"hs-service",
"send-control-msg",
] }
-tor-protover = { version = "0.25.0", path = "../tor-protover" }
-tor-relay-selection = { path = "../tor-relay-selection", version = "0.25.0" }
-tor-rtcompat = { version = "0.25.0", path = "../tor-rtcompat" }
+tor-protover = { version = "0.26.0", path = "../tor-protover" }
+tor-relay-selection = { path = "../tor-relay-selection", version = "0.26.0" }
+tor-rtcompat = { version = "0.26.0", path = "../tor-rtcompat" }
tracing = "0.1.36"
void = "1"
@@ -127,12 +127,12 @@ serde_json = "1.0.104"
slotmap-careful = { path = "../slotmap-careful", version = "0.2.2" }
tempfile = "3"
test-temp-dir = { version = "0.3.0", path = "../test-temp-dir" }
-tor-config = { version = "0.25.0", path = "../tor-config", features = ["testing"] }
-tor-key-forge = { version = "0.25.0", path = "../tor-key-forge" }
-tor-keymgr = { version = "0.25.0", path = "../tor-keymgr", features = ["keymgr", "testing"] }
-tor-netdir = { version = "0.25.0", path = "../tor-netdir", features = ["hs-service", "testing"] }
-tor-netdoc = { path = "../tor-netdoc", version = "0.25.0", features = ["testing"] }
-tor-persist = { version = "0.25.0", path = "../tor-persist", features = ["testing"] }
-tor-rtmock = { path = "../tor-rtmock", version = "0.25.0" }
+tor-config = { version = "0.26.0", path = "../tor-config", features = ["testing"] }
+tor-key-forge = { version = "0.26.0", path = "../tor-key-forge" }
+tor-keymgr = { version = "0.26.0", path = "../tor-keymgr", features = ["keymgr", "testing"] }
+tor-netdir = { version = "0.26.0", path = "../tor-netdir", features = ["hs-service", "testing"] }
+tor-netdoc = { path = "../tor-netdoc", version = "0.26.0", features = ["testing"] }
+tor-persist = { version = "0.26.0", path = "../tor-persist", features = ["testing"] }
+tor-rtmock = { path = "../tor-rtmock", version = "0.26.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 fbb77ba6d..45dfe73cf 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.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc."]
edition = "2021"
rust-version = "1.77"
@@ -30,10 +30,10 @@ rand = "0.8"
signature = "2"
ssh-key = { version = "0.6.1", features = ["std"] }
thiserror = "2"
-tor-cert = { path = "../tor-cert", version = "0.25.0", features = ["encode", "experimental-api"] }
-tor-error = { version = "0.25.0", path = "../tor-error" }
-tor-llcrypto = { version = "0.25.0", path = "../tor-llcrypto" }
+tor-cert = { path = "../tor-cert", version = "0.26.0", features = ["encode", "experimental-api"] }
+tor-error = { version = "0.26.0", path = "../tor-error" }
+tor-llcrypto = { version = "0.26.0", path = "../tor-llcrypto" }
[dev-dependencies]
signature = "2"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
diff --git a/crates/tor-keymgr/Cargo.toml b/crates/tor-keymgr/Cargo.toml
index a3b5290c4..7fb0a3dbc 100644
--- a/crates/tor-keymgr/Cargo.toml
+++ b/crates/tor-keymgr/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-keymgr"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Gabriela Moldovan <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -60,14 +60,14 @@ serde = { version = "1.0.103", features = ["derive"] }
signature = "2"
ssh-key = { version = "0.6.1", features = ["std"] }
thiserror = "2"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-config = { path = "../tor-config", version = "0.25.0" }
-tor-config-path = { path = "../tor-config-path", version = "0.25.0" }
-tor-error = { path = "../tor-error", version = "0.25.0", features = ["tracing"] }
-tor-hscrypto = { path = "../tor-hscrypto", version = "0.25.0" }
-tor-key-forge = { path = "../tor-key-forge", version = "0.25.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.25.0", features = ["keymgr"] }
-tor-persist = { path = "../tor-persist", version = "0.25.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-config = { path = "../tor-config", version = "0.26.0" }
+tor-config-path = { path = "../tor-config-path", version = "0.26.0" }
+tor-error = { path = "../tor-error", version = "0.26.0", features = ["tracing"] }
+tor-hscrypto = { path = "../tor-hscrypto", version = "0.26.0" }
+tor-key-forge = { path = "../tor-key-forge", version = "0.26.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.26.0", features = ["keymgr"] }
+tor-persist = { path = "../tor-persist", version = "0.26.0" }
tracing = "0.1.36"
walkdir = { version = "2" }
zeroize = "1"
@@ -75,8 +75,8 @@ zeroize = "1"
[dev-dependencies]
serde_json = "1.0.104"
tempfile = "3"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-config = { path = "../tor-config", version = "0.25.0", features = ["testing"] }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-config = { path = "../tor-config", version = "0.26.0", features = ["testing"] }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-linkspec/Cargo.toml b/crates/tor-linkspec/Cargo.toml
index 58dbb97c9..00bbe6103 100644
--- a/crates/tor-linkspec/Cargo.toml
+++ b/crates/tor-linkspec/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-linkspec"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -44,12 +44,12 @@ serde = { version = "1.0.103", features = ["derive"] }
serde_with = "3.0.0"
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "2"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-bytes = { path = "../tor-bytes", version = "0.25.0" }
-tor-config = { path = "../tor-config", version = "0.25.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.25.0", features = ["memquota-memcost"] }
-tor-memquota = { version = "0.25.0", path = "../tor-memquota", default-features = false }
-tor-protover = { path = "../tor-protover", version = "0.25.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.26.0" }
+tor-config = { path = "../tor-config", version = "0.26.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.26.0", features = ["memquota-memcost"] }
+tor-memquota = { version = "0.26.0", path = "../tor-memquota", default-features = false }
+tor-protover = { path = "../tor-protover", version = "0.26.0" }
[dev-dependencies]
hex-literal = "0.4"
diff --git a/crates/tor-llcrypto/Cargo.toml b/crates/tor-llcrypto/Cargo.toml
index 5cf0bbdd8..6a7873bec 100644
--- a/crates/tor-llcrypto/Cargo.toml
+++ b/crates/tor-llcrypto/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-llcrypto"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -59,7 +59,7 @@ sha3 = "0.10.6"
signature = "2"
subtle = "2"
thiserror = "2"
-tor-memquota = { version = "0.25.0", path = "../tor-memquota", default-features = false, optional = true }
+tor-memquota = { version = "0.26.0", path = "../tor-memquota", default-features = false, optional = true }
typenum = { version = "1.15.0", optional = true }
visibility = "0.1.0"
x25519-dalek = { version = "2.0.0", features = ["static_secrets"] }
@@ -70,7 +70,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.25.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.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 623fc1f10..852c1e4ea 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.25.0"
+version = "0.26.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 = "2"
-tor-error = { path = "../tor-error", version = "0.25.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0" }
+tor-error = { path = "../tor-error", version = "0.26.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.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 d5fbe203b..4c4f91362 100644
--- a/crates/tor-memquota/Cargo.toml
+++ b/crates/tor-memquota/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-memquota"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Ian Jackson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -24,12 +24,12 @@ serde = { version = "1.0.103", features = ["derive"] }
slotmap-careful = { path = "../slotmap-careful", version = "0.2.2" }
static_assertions = "1"
thiserror = "2"
-tor-async-utils = { path = "../tor-async-utils", version = "0.25.0" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0", features = ["serde"] }
-tor-config = { path = "../tor-config", version = "0.25.0" }
-tor-error = { path = "../tor-error", version = "0.25.0", features = ["tracing"] }
-tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.25.0" }
-tor-rtcompat = { version = "0.25.0", path = "../tor-rtcompat" }
+tor-async-utils = { path = "../tor-async-utils", version = "0.26.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0", features = ["serde"] }
+tor-config = { path = "../tor-config", version = "0.26.0" }
+tor-error = { path = "../tor-error", version = "0.26.0", features = ["tracing"] }
+tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.26.0" }
+tor-rtcompat = { version = "0.26.0", path = "../tor-rtcompat" }
tracing = "0.1.36"
visibility = { version = "0.1.0", optional = true }
void = "1"
@@ -38,9 +38,9 @@ void = "1"
rand = "0.8"
safelog = { path = "../safelog", version = "0.4.2" }
serde_json = "1.0.50"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-rtcompat = { version = "0.25.0", path = "../tor-rtcompat", features = ["tokio", "native-tls"] }
-tor-rtmock = { path = "../tor-rtmock", version = "0.25.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-rtcompat = { version = "0.26.0", path = "../tor-rtcompat", features = ["tokio", "native-tls"] }
+tor-rtmock = { path = "../tor-rtmock", version = "0.26.0" }
tracing-test = "0.2.4"
[features]
diff --git a/crates/tor-netdir/Cargo.toml b/crates/tor-netdir/Cargo.toml
index aef2d53fc..4e452ec40 100644
--- a/crates/tor-netdir/Cargo.toml
+++ b/crates/tor-netdir/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-netdir"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -61,15 +61,15 @@ static_assertions = "1"
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "2"
time = { version = "0.3.17", features = ["macros"], optional = true }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-error = { path = "../tor-error", version = "0.25.0" }
-tor-geoip = { path = "../tor-geoip", version = "0.25.0", optional = true }
-tor-hscrypto = { path = "../tor-hscrypto", version = "0.25.0", optional = true }
-tor-linkspec = { path = "../tor-linkspec", version = "0.25.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.25.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.25.0" }
-tor-protover = { path = "../tor-protover", version = "0.25.0" }
-tor-units = { path = "../tor-units", version = "0.25.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-error = { path = "../tor-error", version = "0.26.0" }
+tor-geoip = { path = "../tor-geoip", version = "0.26.0", optional = true }
+tor-hscrypto = { path = "../tor-hscrypto", version = "0.26.0", optional = true }
+tor-linkspec = { path = "../tor-linkspec", version = "0.26.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.26.0" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.26.0" }
+tor-protover = { path = "../tor-protover", version = "0.26.0" }
+tor-units = { path = "../tor-units", version = "0.26.0" }
tracing = "0.1.36"
# TODO MSRV 1.81: typed-index-collections 3.2 requires rust 1.81;
# the tilde below prevents it from picking 3.2 and breaking our CI.
@@ -80,6 +80,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.25.0", features = ["build_docs"] }
+tor-netdoc = { path = "../tor-netdoc", version = "0.26.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 a65b4b758..7e04196c7 100644
--- a/crates/tor-netdoc/Cargo.toml
+++ b/crates/tor-netdoc/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-netdoc"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -108,17 +108,17 @@ subtle = "2"
thiserror = "2"
time = { version = "0.3", features = ["std", "parsing", "macros", "formatting"] }
tinystr = "0.8.0"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-bytes = { path = "../tor-bytes", version = "0.25.0" }
-tor-cell = { path = "../tor-cell", version = "0.25.0" }
-tor-cert = { path = "../tor-cert", version = "0.25.0" }
-tor-checkable = { path = "../tor-checkable", version = "0.25.0" }
-tor-error = { path = "../tor-error", version = "0.25.0" }
-tor-hscrypto = { path = "../tor-hscrypto", version = "0.25.0", optional = true }
-tor-linkspec = { path = "../tor-linkspec", version = "0.25.0", optional = true }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.25.0" }
-tor-protover = { path = "../tor-protover", version = "0.25.0" }
-tor-units = { version = "0.25.0", path = "../tor-units", optional = true }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.26.0" }
+tor-cell = { path = "../tor-cell", version = "0.26.0" }
+tor-cert = { path = "../tor-cert", version = "0.26.0" }
+tor-checkable = { path = "../tor-checkable", version = "0.26.0" }
+tor-error = { path = "../tor-error", version = "0.26.0" }
+tor-hscrypto = { path = "../tor-hscrypto", version = "0.26.0", optional = true }
+tor-linkspec = { path = "../tor-linkspec", version = "0.26.0", optional = true }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.26.0" }
+tor-protover = { path = "../tor-protover", version = "0.26.0" }
+tor-units = { version = "0.26.0", path = "../tor-units", optional = true }
visibility = { version = "0.1.0", optional = true }
visible = { version = "0.0.1", optional = true }
void = "1"
@@ -130,7 +130,7 @@ anyhow = "1.0.23"
hex-literal = "0.4"
itertools = "0.14.0"
serde_json = "1.0.50"
-tor-basic-utils = { version = "0.25.0", path = "../tor-basic-utils" }
+tor-basic-utils = { version = "0.26.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 75b76e1ba..5e864a819 100644
--- a/crates/tor-persist/Cargo.toml
+++ b/crates/tor-persist/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-persist"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -46,9 +46,9 @@ serde = { version = "1.0.103", features = ["derive"] }
serde_json = "1.0.50"
thiserror = "2"
time = { version = "0.3", features = ["std", "parsing", "macros", "formatting"] }
-tor-async-utils = { path = "../tor-async-utils", version = "0.25.0" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-error = { path = "../tor-error", version = "0.25.0", features = ["tracing"] }
+tor-async-utils = { path = "../tor-async-utils", version = "0.26.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-error = { path = "../tor-error", version = "0.26.0", features = ["tracing"] }
tracing = "0.1.36"
void = "1"
diff --git a/crates/tor-proto/Cargo.toml b/crates/tor-proto/Cargo.toml
index 9b23edab8..d7143d425 100644
--- a/crates/tor-proto/Cargo.toml
+++ b/crates/tor-proto/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-proto"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -79,22 +79,22 @@ subtle = "2"
thiserror = "2"
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.25.0" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-bytes = { path = "../tor-bytes", version = "0.25.0" }
-tor-cell = { path = "../tor-cell", version = "0.25.0" }
-tor-cert = { path = "../tor-cert", version = "0.25.0" }
-tor-checkable = { path = "../tor-checkable", version = "0.25.0" }
-tor-config = { path = "../tor-config", version = "0.25.0" }
-tor-error = { path = "../tor-error", version = "0.25.0" }
-tor-hscrypto = { path = "../tor-hscrypto", version = "0.25.0", features = ["memquota-memcost"], optional = true }
-tor-linkspec = { path = "../tor-linkspec", version = "0.25.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.25.0", features = ["memquota-memcost"] }
-tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.25.0" }
-tor-memquota = { version = "0.25.0", path = "../tor-memquota", default-features = false }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0" }
-tor-rtmock = { path = "../tor-rtmock", version = "0.25.0" }
-tor-units = { path = "../tor-units", version = "0.25.0", features = ["memquota-memcost"] }
+tor-async-utils = { path = "../tor-async-utils", version = "0.26.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.26.0" }
+tor-cell = { path = "../tor-cell", version = "0.26.0" }
+tor-cert = { path = "../tor-cert", version = "0.26.0" }
+tor-checkable = { path = "../tor-checkable", version = "0.26.0" }
+tor-config = { path = "../tor-config", version = "0.26.0" }
+tor-error = { path = "../tor-error", version = "0.26.0" }
+tor-hscrypto = { path = "../tor-hscrypto", version = "0.26.0", features = ["memquota-memcost"], optional = true }
+tor-linkspec = { path = "../tor-linkspec", version = "0.26.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.26.0", features = ["memquota-memcost"] }
+tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.26.0" }
+tor-memquota = { version = "0.26.0", path = "../tor-memquota", default-features = false }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.0" }
+tor-rtmock = { path = "../tor-rtmock", version = "0.26.0" }
+tor-units = { path = "../tor-units", version = "0.26.0", features = ["memquota-memcost"] }
tracing = "0.1.36"
typenum = "1.12"
visibility = { version = "0.1.0", optional = true }
@@ -111,7 +111,7 @@ itertools = "0.14.0"
regex = { version = "1", default-features = false, features = ["std"] }
statrs = "0.18.0"
tokio-crate = { package = "tokio", version = "1.7", features = ["full"] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0", features = ["tokio", "native-tls"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.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 b50528017..511f52c1d 100644
--- a/crates/tor-protover/Cargo.toml
+++ b/crates/tor-protover/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-protover"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
diff --git a/crates/tor-ptmgr/Cargo.toml b/crates/tor-ptmgr/Cargo.toml
index afb0b57e6..d88ff818a 100644
--- a/crates/tor-ptmgr/Cargo.toml
+++ b/crates/tor-ptmgr/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-ptmgr"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -45,22 +45,22 @@ itertools = "0.14.0"
oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.2.0" }
serde = { version = "1.0.103", features = ["derive"] }
thiserror = "2"
-tor-async-utils = { version = "0.25.0", path = "../tor-async-utils" }
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-chanmgr = { version = "0.25.0", path = "../tor-chanmgr", features = ["pt-client"] }
-tor-config = { version = "0.25.0", path = "../tor-config" }
-tor-config-path = { version = "0.25.0", path = "../tor-config-path" }
-tor-error = { version = "0.25.0", path = "../tor-error", features = ["tracing"] }
-tor-linkspec = { version = "0.25.0", path = "../tor-linkspec", features = ["pt-client"] }
-tor-rtcompat = { version = "0.25.0", path = "../tor-rtcompat" }
-tor-socksproto = { version = "0.25.0", path = "../tor-socksproto" }
+tor-async-utils = { version = "0.26.0", path = "../tor-async-utils" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-chanmgr = { version = "0.26.0", path = "../tor-chanmgr", features = ["pt-client"] }
+tor-config = { version = "0.26.0", path = "../tor-config" }
+tor-config-path = { version = "0.26.0", path = "../tor-config-path" }
+tor-error = { version = "0.26.0", path = "../tor-error", features = ["tracing"] }
+tor-linkspec = { version = "0.26.0", path = "../tor-linkspec", features = ["pt-client"] }
+tor-rtcompat = { version = "0.26.0", path = "../tor-rtcompat" }
+tor-socksproto = { version = "0.26.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.25.0", features = ["tokio", "native-tls"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.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 fba28e253..d7ae0c42e 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.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc."]
edition = "2021"
rust-version = "1.77"
@@ -25,11 +25,11 @@ full = [
derive-deftly = "0.14"
derive_more = { version = "1.0.0", features = ["full"] }
humantime = "2"
-tor-cert = { path = "../tor-cert", version = "0.25.0", features = ["encode"] }
-tor-error = { path = "../tor-error", version = "0.25.0" }
-tor-key-forge = { path = "../tor-key-forge", version = "0.25.0" }
-tor-keymgr = { path = "../tor-keymgr", version = "0.25.0" }
-tor-persist = { path = "../tor-persist", version = "0.25.0" }
+tor-cert = { path = "../tor-cert", version = "0.26.0", features = ["encode"] }
+tor-error = { path = "../tor-error", version = "0.26.0" }
+tor-key-forge = { path = "../tor-key-forge", version = "0.26.0" }
+tor-keymgr = { path = "../tor-keymgr", version = "0.26.0" }
+tor-persist = { path = "../tor-persist", version = "0.26.0" }
[dev-dependencies]
-tor-keymgr = { version = "0.25.0", path = "../tor-keymgr", features = ["testing"] }
+tor-keymgr = { version = "0.26.0", path = "../tor-keymgr", features = ["testing"] }
diff --git a/crates/tor-relay-selection/Cargo.toml b/crates/tor-relay-selection/Cargo.toml
index fcb0e19cb..d0320ce33 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.25.0"
+version = "0.26.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.25.0" }
-tor-geoip = { path = "../tor-geoip", version = "0.25.0", optional = true }
-tor-linkspec = { path = "../tor-linkspec", version = "0.25.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.25.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.25.0" }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-geoip = { path = "../tor-geoip", version = "0.26.0", optional = true }
+tor-linkspec = { path = "../tor-linkspec", version = "0.26.0" }
+tor-netdir = { path = "../tor-netdir", version = "0.26.0" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.26.0" }
[dev-dependencies]
once_cell = "1"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25" }
-tor-netdir = { path = "../tor-netdir", version = "0.25.0", features = ["testing"] }
-tor-netdoc = { path = "../tor-netdoc", version = "0.25.0", features = ["testing"] }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26" }
+tor-netdir = { path = "../tor-netdir", version = "0.26.0", features = ["testing"] }
+tor-netdoc = { path = "../tor-netdoc", version = "0.26.0", features = ["testing"] }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-rpc-connect/Cargo.toml b/crates/tor-rpc-connect/Cargo.toml
index a45b3fe1b..35f13bafc 100644
--- a/crates/tor-rpc-connect/Cargo.toml
+++ b/crates/tor-rpc-connect/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-rpc-connect"
-version = "0.25.0"
+version = "0.26.0"
edition = "2021"
rust-version = "1.77"
authors = ["The Tor Project, Inc."]
@@ -41,10 +41,10 @@ serde = { version = "1.0.103", features = ["derive"] }
serde_with = "3.0.0"
thiserror = "2"
toml = "0.8.8"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-config-path = { path = "../tor-config-path", version = "0.25.0", features = ["address"] }
-tor-general-addr = { path = "../tor-general-addr", version = "0.25.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0", optional = true }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-config-path = { path = "../tor-config-path", version = "0.26.0", features = ["address"] }
+tor-general-addr = { path = "../tor-general-addr", version = "0.26.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.0", optional = true }
tracing = "0.1.36"
zeroize = "1"
diff --git a/crates/tor-rpcbase/Cargo.toml b/crates/tor-rpcbase/Cargo.toml
index 7a1043a22..91164cfa6 100644
--- a/crates/tor-rpcbase/Cargo.toml
+++ b/crates/tor-rpcbase/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-rpcbase"
-version = "0.25.0"
+version = "0.26.0"
edition = "2021"
rust-version = "1.77"
authors = ["The Tor Project, Inc.", "eta <[email protected]>"]
@@ -23,8 +23,8 @@ once_cell = "1"
paste = "1"
serde = { version = "1.0.103", features = ["derive"] }
thiserror = "2"
-tor-async-utils = { path = "../tor-async-utils", version = "0.25.0" }
-tor-error = { path = "../tor-error/", version = "0.25.0", features = ["rpc"] }
+tor-async-utils = { path = "../tor-async-utils", version = "0.26.0" }
+tor-error = { path = "../tor-error/", version = "0.26.0", features = ["rpc"] }
typetag = "0.2.7"
void = "1"
diff --git a/crates/tor-rtcompat/Cargo.toml b/crates/tor-rtcompat/Cargo.toml
index 2e18fae8f..4cc01cb37 100644
--- a/crates/tor-rtcompat/Cargo.toml
+++ b/crates/tor-rtcompat/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-rtcompat"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -64,8 +64,8 @@ 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.25.0", path = "../tor-error" }
-tor-general-addr = { version = "0.25.0", path = "../tor-general-addr" }
+tor-error = { version = "0.26.0", path = "../tor-error" }
+tor-general-addr = { version = "0.26.0", path = "../tor-general-addr" }
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 cb163236e..510b6b513 100644
--- a/crates/tor-rtmock/Cargo.toml
+++ b/crates/tor-rtmock/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-rtmock"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -26,9 +26,9 @@ priority-queue = "2.0.3"
slotmap-careful = { path = "../slotmap-careful", version = "0.2.2" }
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "2"
-tor-error = { version = "0.25.0", path = "../tor-error", features = ["tracing"] }
-tor-general-addr = { version = "0.25.0", path = "../tor-general-addr" }
-tor-rtcompat = { version = "0.25.0", path = "../tor-rtcompat" }
+tor-error = { version = "0.26.0", path = "../tor-error", features = ["tracing"] }
+tor-general-addr = { version = "0.26.0", path = "../tor-general-addr" }
+tor-rtcompat = { version = "0.26.0", path = "../tor-rtcompat" }
tracing = "0.1.36"
tracing-test = "0.2.4"
void = "1"
@@ -36,9 +36,9 @@ void = "1"
[dev-dependencies]
futures-await-test = "0.3.0"
rand = "0.8"
-tor-basic-utils = { path = "../tor-basic-utils", version = "0.25.0" }
-tor-general-addr = { path = "../tor-general-addr", version = "0.25.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.25.0", features = ["tokio", "native-tls"] }
+tor-basic-utils = { path = "../tor-basic-utils", version = "0.26.0" }
+tor-general-addr = { path = "../tor-general-addr", version = "0.26.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.26.0", features = ["tokio", "native-tls"] }
[features]
full = ["tor-rtcompat/full", "tor-error/full", "oneshot-fused-workaround/full", "slotmap-careful/full", "tor-general-addr/full"]
diff --git a/crates/tor-socksproto/Cargo.toml b/crates/tor-socksproto/Cargo.toml
index 006bfb510..116314d02 100644
--- a/crates/tor-socksproto/Cargo.toml
+++ b/crates/tor-socksproto/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-socksproto"
-version = "0.25.0"
+version = "0.26.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -28,8 +28,8 @@ educe = "0.4.6"
safelog = { path = "../safelog", version = "0.4.2" }
subtle = "2"
thiserror = "2"
-tor-bytes = { path = "../tor-bytes", version = "0.25.0", default-features = false }
-tor-error = { path = "../tor-error", version = "0.25.0", default-features = false }
+tor-bytes = { path = "../tor-bytes", version = "0.26.0", default-features = false }
+tor-error = { path = "../tor-error", version = "0.26.0", default-features = false }
[dev-dependencies]
anyhow = "1.0.75"
diff --git a/crates/tor-units/Cargo.toml b/crates/tor-units/Cargo.toml
index 166771bdc..f66f5a4b1 100644
--- a/crates/tor-units/Cargo.toml
+++ b/crates/tor-units/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-units"
-version = "0.25.0"
+version = "0.26.0"
authors = ["Dennis Jackson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
@@ -16,7 +16,7 @@ categories = ["rust-patterns"]
derive-deftly = { version = "0.14.2", optional = true }
derive_more = { version = "1.0.0", features = ["full"] }
thiserror = "2"
-tor-memquota = { version = "0.25.0", path = "../tor-memquota", default-features = false, optional = true }
+tor-memquota = { version = "0.26.0", path = "../tor-memquota", default-features = false, optional = true }
[dev-dependencies]
float-cmp = "0.10.0"