diff options
Diffstat (limited to 'crates')
62 files changed, 679 insertions, 551 deletions
diff --git a/crates/arti-bench/Cargo.toml b/crates/arti-bench/Cargo.toml index 8c1b5876c..627486950 100644 --- a/crates/arti-bench/Cargo.toml +++ b/crates/arti-bench/Cargo.toml @@ -17,19 +17,19 @@ publish = false [dependencies] anyhow = "1.0.23" -arti = { path = "../arti", version = "1.4.3" } -arti-client = { package = "arti-client", path = "../arti-client", version = "0.30.0" } +arti = { path = "../arti", version = "1.4.4" } +arti-client = { package = "arti-client", path = "../arti-client", version = "0.31.0" } clap = { version = "4.3.24", features = ["wrap_help"] } float-ord = "0.3" -fs-mistrust = { path = "../fs-mistrust", version = "0.9.1" } +fs-mistrust = { path = "../fs-mistrust", version = "0.9.3" } futures = "0.3.14" rand = "0.9.1" 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.30.0" } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0", features = ["tokio", "native-tls"] } +tor-config = { path = "../tor-config", version = "0.31.0" } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.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 ab629f435..f91505e1e 100644 --- a/crates/arti-client/Cargo.toml +++ b/crates/arti-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arti-client" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -157,7 +157,7 @@ derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" } derive_more = { version = "2.0.1", features = ["full"] } dyn-clone = { version = "1.0.11", optional = true } educe = "0.4.22" -fs-mistrust = { path = "../fs-mistrust", version = "0.9.1", features = ["serde"] } +fs-mistrust = { path = "../fs-mistrust", version = "0.9.3", features = ["serde"] } futures = "0.3.14" hostname-validator = "1.1.1" humantime = "2" @@ -170,32 +170,32 @@ safelog = { path = "../safelog", version = "0.4.5" } serde = { version = "1.0.103", features = ["derive"] } thiserror = "2" time = { version = "0.3.20", features = ["parsing", "macros"] } -tor-async-utils = { path = "../tor-async-utils", version = "0.30.0" } -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-chanmgr = { path = "../tor-chanmgr", version = "0.30.0" } -tor-circmgr = { path = "../tor-circmgr", version = "0.30.0" } -tor-config = { path = "../tor-config", version = "0.30.0" } -tor-config-path = { path = "../tor-config-path", version = "0.30.0", features = ["arti-client"] } -tor-dirmgr = { path = "../tor-dirmgr", version = "0.30.0", default-features = false, features = ["mmap"] } -tor-error = { path = "../tor-error", version = "0.30.0", features = ["tracing"] } -tor-geoip = { path = "../tor-geoip", version = "0.30.0", optional = true } -tor-guardmgr = { path = "../tor-guardmgr", version = "0.30.0" } -tor-hsclient = { path = "../tor-hsclient", version = "0.30.0", optional = true } -tor-hscrypto = { path = "../tor-hscrypto", version = "0.30.0", optional = true } -tor-hsservice = { path = "../tor-hsservice", version = "0.30.0", optional = true } -tor-keymgr = { path = "../tor-keymgr", version = "0.30.0", default-features = false } -tor-linkspec = { path = "../tor-linkspec", version = "0.30.0" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.30.0" } +tor-async-utils = { path = "../tor-async-utils", version = "0.31.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-chanmgr = { path = "../tor-chanmgr", version = "0.31.0" } +tor-circmgr = { path = "../tor-circmgr", version = "0.31.0" } +tor-config = { path = "../tor-config", version = "0.31.0" } +tor-config-path = { path = "../tor-config-path", version = "0.31.0", features = ["arti-client"] } +tor-dirmgr = { path = "../tor-dirmgr", version = "0.31.0", default-features = false, features = ["mmap"] } +tor-error = { path = "../tor-error", version = "0.31.0", features = ["tracing"] } +tor-geoip = { path = "../tor-geoip", version = "0.31.0", optional = true } +tor-guardmgr = { path = "../tor-guardmgr", version = "0.31.0" } +tor-hsclient = { path = "../tor-hsclient", version = "0.31.0", optional = true } +tor-hscrypto = { path = "../tor-hscrypto", version = "0.31.0", optional = true } +tor-hsservice = { path = "../tor-hsservice", version = "0.31.0", optional = true } +tor-keymgr = { path = "../tor-keymgr", version = "0.31.0", default-features = false } +tor-linkspec = { path = "../tor-linkspec", version = "0.31.0" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.31.0" } # tor-memquota dependency is unconditional, but most of the code is behind tor-memquota/memquota -tor-memquota = { path = "../tor-memquota", version = "0.30.0", default-features = false } -tor-netdir = { path = "../tor-netdir", version = "0.30.0" } -tor-netdoc = { path = "../tor-netdoc", version = "0.30.0" } -tor-persist = { path = "../tor-persist", version = "0.30.0" } -tor-proto = { path = "../tor-proto", version = "0.30.0" } -tor-protover = { path = "../tor-protover", version = "0.30.0" } -tor-ptmgr = { path = "../tor-ptmgr", version = "0.30.0", optional = true } -tor-rpcbase = { path = "../tor-rpcbase", version = "0.30.0", optional = true } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0" } +tor-memquota = { path = "../tor-memquota", version = "0.31.0", default-features = false } +tor-netdir = { path = "../tor-netdir", version = "0.31.0" } +tor-netdoc = { path = "../tor-netdoc", version = "0.31.0" } +tor-persist = { path = "../tor-persist", version = "0.31.0" } +tor-proto = { path = "../tor-proto", version = "0.31.0" } +tor-protover = { path = "../tor-protover", version = "0.31.0" } +tor-ptmgr = { path = "../tor-ptmgr", version = "0.31.0", optional = true } +tor-rpcbase = { path = "../tor-rpcbase", version = "0.31.0", optional = true } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0" } tracing = "0.1.36" visibility = { version = "0.1.0", optional = true } void = "1" @@ -215,8 +215,8 @@ tokio-crate = { package = "tokio", version = "1.7", features = [ "macros", ] } toml = "0.8.8" -tor-relay-selection = { path = "../tor-relay-selection", version = "0.30.0" } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0", features = ["tokio", "native-tls"] } +tor-relay-selection = { path = "../tor-relay-selection", version = "0.31.0" } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0", features = ["tokio", "native-tls"] } tracing-subscriber = "0.3.0" tracing-test = "0.2.4" diff --git a/crates/arti-client/src/release_date.rs b/crates/arti-client/src/release_date.rs index 0dd1d091a..ae053bef3 100644 --- a/crates/arti-client/src/release_date.rs +++ b/crates/arti-client/src/release_date.rs @@ -15,4 +15,4 @@ /// from consensuses older than our software: /// the fact that we released _this_ version /// indicates that a newer consensus probably permits this version.) -pub(crate) const ARTI_CLIENT_RELEASE_DATE: &str = "2025-05-01"; +pub(crate) const ARTI_CLIENT_RELEASE_DATE: &str = "2025-06-05"; diff --git a/crates/arti-relay/Cargo.toml b/crates/arti-relay/Cargo.toml index 19432c8bd..0df9ba02d 100644 --- a/crates/arti-relay/Cargo.toml +++ b/crates/arti-relay/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arti-relay" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc."] edition = "2021" rust-version = "1.83" @@ -35,26 +35,26 @@ clap = { version = "4.3.24", features = ["string", "wrap_help", "derive"] } derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" } derive_more = { version = "2.0.1", features = ["full"] } directories = "6" -fs-mistrust = { path = "../fs-mistrust", version = "0.9.1", features = ["serde"] } +fs-mistrust = { path = "../fs-mistrust", version = "0.9.3", features = ["serde"] } once_cell = "1" rand = "0.9.1" safelog = { path = "../safelog", version = "0.4.5" } serde = { version = "1.0.103", features = ["derive"] } strum = { version = "0.27.1", features = ["derive"] } thiserror = "2" -tor-chanmgr = { path = "../tor-chanmgr", version = "0.30.0" } -tor-config = { path = "../tor-config", version = "0.30.0" } -tor-config-path = { path = "../tor-config-path", version = "0.30.0" } -tor-error = { path = "../tor-error", version = "0.30.0" } -tor-keymgr = { path = "../tor-keymgr", version = "0.30.0", features = ["keymgr", "ephemeral-keystore"] } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.30.0" } +tor-chanmgr = { path = "../tor-chanmgr", version = "0.31.0" } +tor-config = { path = "../tor-config", version = "0.31.0" } +tor-config-path = { path = "../tor-config-path", version = "0.31.0" } +tor-error = { path = "../tor-error", version = "0.31.0" } +tor-keymgr = { path = "../tor-keymgr", version = "0.31.0", features = ["keymgr", "ephemeral-keystore"] } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.31.0" } # TODO RELAY compile in memquota tracking by default? with a calculated limit maybe, even? -tor-memquota = { version = "0.30.0", path = "../tor-memquota", default-features = false } -tor-netdir = { path = "../tor-netdir", version = "0.30.0" } -tor-netdoc = { path = "../tor-netdoc", version = "0.30.0" } -tor-proto = { path = "../tor-proto", version = "0.30.0", features = ["tokio"] } -tor-relay-crypto = { path = "../tor-relay-crypto", version = "0.30.0" } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0", features = ["rustls", "tokio"] } +tor-memquota = { version = "0.31.0", path = "../tor-memquota", default-features = false } +tor-netdir = { path = "../tor-netdir", version = "0.31.0" } +tor-netdoc = { path = "../tor-netdoc", version = "0.31.0" } +tor-proto = { path = "../tor-proto", version = "0.31.0", features = ["tokio"] } +tor-relay-crypto = { path = "../tor-relay-crypto", version = "0.31.0" } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0", features = ["rustls", "tokio"] } tracing = "0.1.36" tracing-subscriber = { version = "0.3.0", features = ["env-filter"] } diff --git a/crates/arti-rpc-client-core/Cargo.toml b/crates/arti-rpc-client-core/Cargo.toml index d2f403173..4414efc4a 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.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -21,17 +21,17 @@ caret = { path = "../caret", version = "0.5.0" } cfg-if = "1.0.0" derive_more = { version = "2.0.1", features = ["full"] } educe = "0.4.22" -fs-mistrust = { version = "0.9.1", path = "../fs-mistrust" } +fs-mistrust = { version = "0.9.3", path = "../fs-mistrust" } paste = { version = "1", optional = true } percent-encoding = "2.3.1" rand = "0.9.1" serde = { version = "1.0.103", features = ["derive"] } serde_json = "1.0.104" thiserror = "2" -tor-config-path = { version = "0.30.0", path = "../tor-config-path", features = ["arti-client"] } -tor-error = { version = "0.30.0", path = "../tor-error", default-features = false } -tor-rpc-connect = { version = "0.30.0", path = "../tor-rpc-connect", features = ["rpc-client"] } -tor-socksproto = { path = "../tor-socksproto", version = "0.30.0", default-features = false, features = [ +tor-config-path = { version = "0.31.0", path = "../tor-config-path", features = ["arti-client"] } +tor-error = { version = "0.31.0", path = "../tor-error", default-features = false } +tor-rpc-connect = { version = "0.31.0", path = "../tor-rpc-connect", features = ["rpc-client"] } +tor-socksproto = { path = "../tor-socksproto", version = "0.31.0", default-features = false, features = [ "client-handshake", ] } void = "1" @@ -39,7 +39,7 @@ void = "1" [dev-dependencies] rand = "0.9.1" rand_chacha = "0.9" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } [features] full = [ diff --git a/crates/arti-rpcserver/Cargo.toml b/crates/arti-rpcserver/Cargo.toml index dda8f85fd..b6d15d044 100644 --- a/crates/arti-rpcserver/Cargo.toml +++ b/crates/arti-rpcserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arti-rpcserver" -version = "0.30.0" +version = "0.31.0" edition = "2021" rust-version = "1.83" authors = ["The Tor Project, Inc.", "eta <[email protected]>"] @@ -34,7 +34,7 @@ weakref = ["__is_experimental"] __is_experimental = [] [dependencies] -arti-client = { path = "../arti-client", version = "0.30.0", features = ["rpc"] } +arti-client = { path = "../arti-client", version = "0.31.0", features = ["rpc"] } async-trait = "0.1.54" asynchronous-codec = { version = "0.7.0", features = ["json"] } base64ct = "1.5.1" @@ -51,14 +51,14 @@ serde_json = "1.0.50" slotmap-careful = { path = "../slotmap-careful", version = "0.2.2" } thiserror = "2" tiny-keccak = { version = "2.0.2", features = ["kmac"] } -tor-async-utils = { path = "../tor-async-utils", version = "0.30.0" } -tor-bytes = { path = "../tor-bytes", version = "0.30.0" } -tor-error = { path = "../tor-error", version = "0.30.0" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.30.0" } -tor-proto = { path = "../tor-proto", version = "0.30.0", features = ["stream-ctrl"] } -tor-rpc-connect = { path = "../tor-rpc-connect", version = "0.30.0" } -tor-rpcbase = { path = "../tor-rpcbase", version = "0.30.0" } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0" } +tor-async-utils = { path = "../tor-async-utils", version = "0.31.0" } +tor-bytes = { path = "../tor-bytes", version = "0.31.0" } +tor-error = { path = "../tor-error", version = "0.31.0" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.31.0" } +tor-proto = { path = "../tor-proto", version = "0.31.0", features = ["stream-ctrl"] } +tor-rpc-connect = { path = "../tor-rpc-connect", version = "0.31.0" } +tor-rpcbase = { path = "../tor-rpcbase", version = "0.31.0" } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0" } tracing = "0.1.36" typetag = "0.2.7" weak-table = "0.3.0" @@ -66,5 +66,5 @@ zeroize = "1" [dev-dependencies] futures-await-test = "0.3.0" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-rtmock = { path = "../tor-rtmock", version = "0.30.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-rtmock = { path = "../tor-rtmock", version = "0.31.0" } diff --git a/crates/arti-testing/Cargo.toml b/crates/arti-testing/Cargo.toml index 7f390f90e..adaac8166 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.4.3" } -arti-client = { package = "arti-client", path = "../arti-client", version = "0.30.0", features = ["dirfilter"] } +arti = { package = "arti", path = "../arti", version = "1.4.4" } +arti-client = { package = "arti-client", path = "../arti-client", version = "0.31.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.9.1" tokio = { version = "1.7", features = ["signal", "macros"] } -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-config = { path = "../tor-config", version = "0.30.0" } -tor-dirmgr = { package = "tor-dirmgr", path = "../tor-dirmgr", version = "0.30.0", features = ["dirfilter"] } -tor-netdoc = { package = "tor-netdoc", path = "../tor-netdoc", version = "0.30.0", features = [ +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-config = { path = "../tor-config", version = "0.31.0" } +tor-dirmgr = { package = "tor-dirmgr", path = "../tor-dirmgr", version = "0.31.0", features = ["dirfilter"] } +tor-netdoc = { package = "tor-netdoc", path = "../tor-netdoc", version = "0.31.0", features = [ "experimental-api", "dangerous-expose-struct-fields", ] } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0" } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0" } tracing = "0.1.36" tracing-subscriber = { version = "0.3.0", features = ["env-filter"] } [package.metadata.docs.rs] diff --git a/crates/arti-ureq/Cargo.toml b/crates/arti-ureq/Cargo.toml index 2fc1c86b6..d3f2ddec2 100644 --- a/crates/arti-ureq/Cargo.toml +++ b/crates/arti-ureq/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arti-ureq" -version = "0.30.0" +version = "0.31.0" edition = "2021" authors = ["The Tor Project, Inc.", "Niel Duysters"] license = "MIT OR Apache-2.0" @@ -10,15 +10,15 @@ categories = ["network-programming"] repository = "https://gitlab.torproject.org/tpo/core/arti.git/" [dependencies] -arti-client = { path = "../arti-client", version = "0.30.0" } +arti-client = { path = "../arti-client", version = "0.31.0" } async-std = { version = "1.7.0", optional = true } educe = "0.4.6" futures = "0.3.14" thiserror = "2" tokio = { version = "1.7", optional = true } -tor-error = { path = "../tor-error", version = "0.30.0" } -tor-proto = { path = "../tor-proto", features = [ "stream-ctrl" ], version = "0.30.0" } -tor-rtcompat = { path = "../tor-rtcompat", default-features = false, version = "0.30.0" } +tor-error = { path = "../tor-error", version = "0.31.0" } +tor-proto = { path = "../tor-proto", features = [ "stream-ctrl" ], version = "0.31.0" } +tor-rtcompat = { path = "../tor-rtcompat", default-features = false, version = "0.31.0" } ureq = { version = "~3.0.11", default-features = false, features = ["rustls-no-provider", "platform-verifier"] } [dev-dependencies] diff --git a/crates/arti/Cargo.toml b/crates/arti/Cargo.toml index 121a6285f..43da05b2e 100644 --- a/crates/arti/Cargo.toml +++ b/crates/arti/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arti" -version = "1.4.3" +version = "1.4.4" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -141,17 +141,17 @@ dialoguer = [] [dependencies] anyhow = "1.0.23" -arti-client = { package = "arti-client", path = "../arti-client", version = "0.30.0", default-features = false, features = [ +arti-client = { package = "arti-client", path = "../arti-client", version = "0.31.0", default-features = false, features = [ "anyhow", ] } -arti-rpcserver = { path = "../arti-rpcserver", version = "0.30.0", optional = true } +arti-rpcserver = { path = "../arti-rpcserver", version = "0.31.0", optional = true } async-ctrlc = { version = "1.2.0", optional = true } async-signal = { version = "0.2.10", optional = true } cfg-if = "1.0.0" clap = { version = "4.3.24", features = ["string", "wrap_help", "derive"] } derive-deftly = { version = "~1.0.0", features = ["full", "beta"], optional = true } derive_builder = { version = "0.11", package = "derive_builder_fork_arti" } -fs-mistrust = { path = "../fs-mistrust", version = "0.9.1" } +fs-mistrust = { path = "../fs-mistrust", version = "0.9.3" } futures = "0.3.14" hickory-proto = { version = "0.24.4", optional = true } humantime = "2" @@ -176,17 +176,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.30.0" } -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-config = { path = "../tor-config", version = "0.30.0" } -tor-config-path = { path = "../tor-config-path", version = "0.30.0" } -tor-error = { path = "../tor-error", version = "0.30.0", default-features = false, features = ["tracing"] } -tor-hsrproxy = { path = "../tor-hsrproxy", version = "0.30.0", optional = true } -tor-hsservice = { path = "../tor-hsservice", version = "0.30.0", optional = true } -tor-rpc-connect = { path = "../tor-rpc-connect", version = "0.30.0", optional = true, features = ["rpc-server"] } -tor-rpcbase = { path = "../tor-rpcbase", version = "0.30.0", optional = true } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0", default-features = false } -tor-socksproto = { path = "../tor-socksproto", version = "0.30.0" } +tor-async-utils = { path = "../tor-async-utils", version = "0.31.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-config = { path = "../tor-config", version = "0.31.0" } +tor-config-path = { path = "../tor-config-path", version = "0.31.0" } +tor-error = { path = "../tor-error", version = "0.31.0", default-features = false, features = ["tracing"] } +tor-hsrproxy = { path = "../tor-hsrproxy", version = "0.31.0", optional = true } +tor-hsservice = { path = "../tor-hsservice", version = "0.31.0", optional = true } +tor-rpc-connect = { path = "../tor-rpc-connect", version = "0.31.0", optional = true, features = ["rpc-server"] } +tor-rpcbase = { path = "../tor-rpcbase", version = "0.31.0", optional = true } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0", default-features = false } +tor-socksproto = { path = "../tor-socksproto", version = "0.31.0" } tracing = "0.1.36" tracing-appender = "0.2.0" tracing-journald = { version = "0.3.0", optional = true } @@ -194,7 +194,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.30.0", default-features = false, features = [ +arti-client = { package = "arti-client", path = "../arti-client", version = "0.31.0", default-features = false, features = [ "testing", ] } assert_cmd = "2.0.17" @@ -205,10 +205,10 @@ regex = { version = "1", default-features = false, features = ["std"] } serde_json = "1.0.50" tempfile = "3" test-temp-dir = { version = "0.3.3", path = "../test-temp-dir" } -tor-async-utils = { version = "0.30.0", path = "../tor-async-utils" } -tor-config = { path = "../tor-config", version = "0.30.0", features = ["testing"] } -tor-memquota = { version = "0.30.0", path = "../tor-memquota", default-features = false, features = ["testing"] } -tor-rtmock = { path = "../tor-rtmock", version = "0.30.0" } +tor-async-utils = { version = "0.31.0", path = "../tor-async-utils" } +tor-config = { path = "../tor-config", version = "0.31.0", features = ["testing"] } +tor-memquota = { version = "0.31.0", path = "../tor-memquota", default-features = false, features = ["testing"] } +tor-rtmock = { path = "../tor-rtmock", version = "0.31.0" } trycmd = "0.15.4" [package.metadata.docs.rs] all-features = true diff --git a/crates/caret/Cargo.toml b/crates/caret/Cargo.toml index a37b2369b..3fd796ee1 100644 --- a/crates/caret/Cargo.toml +++ b/crates/caret/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "caret" -version = "0.5.1" +version = "0.5.2" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" diff --git a/crates/equix/Cargo.toml b/crates/equix/Cargo.toml index d1f5499fc..34c1cf1ed 100644 --- a/crates/equix/Cargo.toml +++ b/crates/equix/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "equix" -version = "0.2.3" +version = "0.2.4" authors = ["The Tor Project, Inc.", "Micah Elizabeth Scott <[email protected]>"] edition = "2021" rust-version = "1.83" diff --git a/crates/equix/bench/Cargo.lock b/crates/equix/bench/Cargo.lock index ee15c29f9..c79a34add 100644 --- a/crates/equix/bench/Cargo.lock +++ b/crates/equix/bench/Cargo.lock @@ -19,9 +19,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" [[package]] name = "anstyle" -version = "1.0.10" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" +checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd" [[package]] name = "arrayvec" @@ -60,9 +60,9 @@ dependencies = [ [[package]] name = "bitflags" -version = "2.9.0" +version = "2.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd" +checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" [[package]] name = "blake2" @@ -102,9 +102,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" [[package]] name = "cc" -version = "1.2.20" +version = "1.2.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04da6a0d40b948dfc4fa8f5bbf402b0fc1a64a28dbf7d12ffd683550f2c1b63a" +checksum = "d0fc897dc1e865cc67c0e05a836d9d3f1df3cbe442aa4a9473b18e12624a4951" dependencies = [ "jobserver", "libc", @@ -166,18 +166,18 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.37" +version = "4.5.39" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eccb054f56cbd38340b380d4a8e69ef1f02f1af43db2f0cc817a4774d80ae071" +checksum = "fd60e63e9be68e5fb56422e397cf9baddded06dae1d2e523401542383bc72a9f" dependencies = [ "clap_builder", ] [[package]] name = "clap_builder" -version = "4.5.37" +version = "4.5.39" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "efd9466fac8543255d3b1fcad4762c5e116ffe808c8a3043d4263cd4fd4862a2" +checksum = "89cc6392a1f72bbeb820d71f32108f61fdaf18bc526e1d23954168a67759ef51" dependencies = [ "anstyle", "clap_lex", @@ -312,7 +312,7 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" [[package]] name = "equix" -version = "0.2.3" +version = "0.2.4" dependencies = [ "arrayvec", "hashx", @@ -333,9 +333,9 @@ dependencies = [ [[package]] name = "errno" -version = "0.3.11" +version = "0.3.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e" +checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18" dependencies = [ "libc", "windows-sys", @@ -365,9 +365,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0" +checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" dependencies = [ "cfg-if", "libc", @@ -393,7 +393,7 @@ dependencies = [ [[package]] name = "hashx" -version = "0.3.1" +version = "0.3.2" dependencies = [ "arrayvec", "blake2", @@ -406,9 +406,9 @@ dependencies = [ [[package]] name = "hermit-abi" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbd780fe5cc30f81464441920d82ac8740e2e46b29a6fad543ddd075229ce37e" +checksum = "f154ce46856750ed433c8649605bf7ed2de3bc35fd9d2a9f30cddd873c80cb08" [[package]] name = "hex" @@ -491,12 +491,12 @@ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa" [[package]] name = "libloading" -version = "0.8.6" +version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" +checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667" dependencies = [ "cfg-if", - "windows-targets", + "windows-targets 0.53.0", ] [[package]] @@ -608,9 +608,9 @@ dependencies = [ [[package]] name = "prettyplease" -version = "0.2.32" +version = "0.2.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6" +checksum = "9dee91521343f4c5c6a63edd65e54f31f5c92fe8978c40a4282f8372194c6a7d" dependencies = [ "proc-macro2", "syn", @@ -761,9 +761,9 @@ dependencies = [ [[package]] name = "rustversion" -version = "1.0.20" +version = "1.0.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2" +checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" [[package]] name = "ryu" @@ -868,7 +868,7 @@ dependencies = [ [[package]] name = "tor-c-equix" version = "0.2.0" -source = "git+https://gitlab.torproject.org/tpo/core/tor.git#7ae5e798d6f9d96de928370a1e7b6fdb0b03d394" +source = "git+https://gitlab.torproject.org/tpo/core/tor.git#933c5491db00c703d5d8264fdabd5a5b10aff96f" dependencies = [ "bindgen", "cc", @@ -1017,7 +1017,7 @@ version = "0.59.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" dependencies = [ - "windows-targets", + "windows-targets 0.52.6", ] [[package]] @@ -1026,14 +1026,30 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" dependencies = [ - "windows_aarch64_gnullvm", - "windows_aarch64_msvc", - "windows_i686_gnu", - "windows_i686_gnullvm", - "windows_i686_msvc", - "windows_x86_64_gnu", - "windows_x86_64_gnullvm", - "windows_x86_64_msvc", + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm 0.52.6", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", +] + +[[package]] +name = "windows-targets" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b" +dependencies = [ + "windows_aarch64_gnullvm 0.53.0", + "windows_aarch64_msvc 0.53.0", + "windows_i686_gnu 0.53.0", + "windows_i686_gnullvm 0.53.0", + "windows_i686_msvc 0.53.0", + "windows_x86_64_gnu 0.53.0", + "windows_x86_64_gnullvm 0.53.0", + "windows_x86_64_msvc 0.53.0", ] [[package]] @@ -1043,48 +1059,96 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" [[package]] +name = "windows_aarch64_gnullvm" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" + +[[package]] name = "windows_aarch64_msvc" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" [[package]] +name = "windows_aarch64_msvc" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" + +[[package]] name = "windows_i686_gnu" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" [[package]] +name = "windows_i686_gnu" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" + +[[package]] name = "windows_i686_gnullvm" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" [[package]] +name = "windows_i686_gnullvm" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" + +[[package]] name = "windows_i686_msvc" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" [[package]] +name = "windows_i686_msvc" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" + +[[package]] name = "windows_x86_64_gnu" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" [[package]] +name = "windows_x86_64_gnu" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" + +[[package]] name = "windows_x86_64_gnullvm" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" [[package]] +name = "windows_x86_64_gnullvm" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" + +[[package]] name = "windows_x86_64_msvc" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] +name = "windows_x86_64_msvc" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" + +[[package]] name = "wit-bindgen-rt" version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/crates/fs-mistrust/Cargo.toml b/crates/fs-mistrust/Cargo.toml index 4b85d7cfe..1f5506110 100644 --- a/crates/fs-mistrust/Cargo.toml +++ b/crates/fs-mistrust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fs-mistrust" -version = "0.9.2" +version = "0.9.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 6d0c1007f..e51942dcc 100644 --- a/crates/fslock-guard/Cargo.toml +++ b/crates/fslock-guard/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fslock-guard" -version = "0.2.2" +version = "0.2.3" 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 d0c47f23b..56f12e175 100644 --- a/crates/hashx/Cargo.toml +++ b/crates/hashx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hashx" -version = "0.3.1" +version = "0.3.2" authors = ["The Tor Project, Inc.", "Micah Elizabeth Scott <[email protected]>"] edition = "2021" rust-version = "1.83" diff --git a/crates/hashx/bench/Cargo.lock b/crates/hashx/bench/Cargo.lock index 79cc83008..62b266afc 100644 --- a/crates/hashx/bench/Cargo.lock +++ b/crates/hashx/bench/Cargo.lock @@ -19,9 +19,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" [[package]] name = "anstyle" -version = "1.0.10" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" +checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd" [[package]] name = "arrayvec" @@ -60,9 +60,9 @@ dependencies = [ [[package]] name = "bitflags" -version = "2.9.0" +version = "2.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd" +checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" [[package]] name = "blake2" @@ -102,9 +102,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" [[package]] name = "cc" -version = "1.2.20" +version = "1.2.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04da6a0d40b948dfc4fa8f5bbf402b0fc1a64a28dbf7d12ffd683550f2c1b63a" +checksum = "d0fc897dc1e865cc67c0e05a836d9d3f1df3cbe442aa4a9473b18e12624a4951" dependencies = [ "jobserver", "libc", @@ -166,18 +166,18 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.37" +version = "4.5.39" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eccb054f56cbd38340b380d4a8e69ef1f02f1af43db2f0cc817a4774d80ae071" +checksum = "fd60e63e9be68e5fb56422e397cf9baddded06dae1d2e523401542383bc72a9f" dependencies = [ "clap_builder", ] [[package]] name = "clap_builder" -version = "4.5.37" +version = "4.5.39" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "efd9466fac8543255d3b1fcad4762c5e116ffe808c8a3043d4263cd4fd4862a2" +checksum = "89cc6392a1f72bbeb820d71f32108f61fdaf18bc526e1d23954168a67759ef51" dependencies = [ "anstyle", "clap_lex", @@ -312,9 +312,9 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" [[package]] name = "errno" -version = "0.3.11" +version = "0.3.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e" +checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18" dependencies = [ "libc", "windows-sys", @@ -344,9 +344,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0" +checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" dependencies = [ "cfg-if", "libc", @@ -372,7 +372,7 @@ dependencies = [ [[package]] name = "hashx" -version = "0.3.1" +version = "0.3.2" dependencies = [ "arrayvec", "blake2", @@ -396,9 +396,9 @@ dependencies = [ [[package]] name = "hermit-abi" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbd780fe5cc30f81464441920d82ac8740e2e46b29a6fad543ddd075229ce37e" +checksum = "f154ce46856750ed433c8649605bf7ed2de3bc35fd9d2a9f30cddd873c80cb08" [[package]] name = "hex" @@ -487,12 +487,12 @@ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa" [[package]] name = "libloading" -version = "0.8.6" +version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" +checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667" dependencies = [ "cfg-if", - "windows-targets", + "windows-targets 0.53.0", ] [[package]] @@ -604,9 +604,9 @@ dependencies = [ [[package]] name = "prettyplease" -version = "0.2.32" +version = "0.2.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6" +checksum = "9dee91521343f4c5c6a63edd65e54f31f5c92fe8978c40a4282f8372194c6a7d" dependencies = [ "proc-macro2", "syn", @@ -757,9 +757,9 @@ dependencies = [ [[package]] name = "rustversion" -version = "1.0.20" +version = "1.0.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2" +checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" [[package]] name = "ryu" @@ -864,7 +864,7 @@ dependencies = [ [[package]] name = "tor-c-equix" version = "0.2.0" -source = "git+https://gitlab.torproject.org/tpo/core/tor.git#7ae5e798d6f9d96de928370a1e7b6fdb0b03d394" +source = "git+https://gitlab.torproject.org/tpo/core/tor.git#933c5491db00c703d5d8264fdabd5a5b10aff96f" dependencies = [ "bindgen", "cc", @@ -1002,7 +1002,7 @@ version = "0.59.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" dependencies = [ - "windows-targets", + "windows-targets 0.52.6", ] [[package]] @@ -1011,14 +1011,30 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" dependencies = [ - "windows_aarch64_gnullvm", - "windows_aarch64_msvc", - "windows_i686_gnu", - "windows_i686_gnullvm", - "windows_i686_msvc", - "windows_x86_64_gnu", - "windows_x86_64_gnullvm", - "windows_x86_64_msvc", + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm 0.52.6", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", +] + +[[package]] +name = "windows-targets" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b" +dependencies = [ + "windows_aarch64_gnullvm 0.53.0", + "windows_aarch64_msvc 0.53.0", + "windows_i686_gnu 0.53.0", + "windows_i686_gnullvm 0.53.0", + "windows_i686_msvc 0.53.0", + "windows_x86_64_gnu 0.53.0", + "windows_x86_64_gnullvm 0.53.0", + "windows_x86_64_msvc 0.53.0", ] [[package]] @@ -1028,48 +1044,96 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" [[package]] +name = "windows_aarch64_gnullvm" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" + +[[package]] name = "windows_aarch64_msvc" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" [[package]] +name = "windows_aarch64_msvc" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" + +[[package]] name = "windows_i686_gnu" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" [[package]] +name = "windows_i686_gnu" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" + +[[package]] name = "windows_i686_gnullvm" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" [[package]] +name = "windows_i686_gnullvm" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" + +[[package]] name = "windows_i686_msvc" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" [[package]] +name = "windows_i686_msvc" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" + +[[package]] name = "windows_x86_64_gnu" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" [[package]] +name = "windows_x86_64_gnu" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" + +[[package]] name = "windows_x86_64_gnullvm" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" [[package]] +name = "windows_x86_64_gnullvm" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" + +[[package]] name = "windows_x86_64_msvc" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] +name = "windows_x86_64_msvc" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" + +[[package]] name = "wit-bindgen-rt" version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/crates/oneshot-fused-workaround/Cargo.toml b/crates/oneshot-fused-workaround/Cargo.toml index 097d0b024..479654161 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.1" +version = "0.2.2" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" diff --git a/crates/retry-error/Cargo.toml b/crates/retry-error/Cargo.toml index 988c56daa..d5b4655c1 100644 --- a/crates/retry-error/Cargo.toml +++ b/crates/retry-error/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "retry-error" -version = "0.6.3" +version = "0.6.4" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" diff --git a/crates/safelog/Cargo.toml b/crates/safelog/Cargo.toml index d164a7a3e..41baceb0c 100644 --- a/crates/safelog/Cargo.toml +++ b/crates/safelog/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "safelog" -version = "0.4.5" +version = "0.4.6" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" diff --git a/crates/slotmap-careful/Cargo.toml b/crates/slotmap-careful/Cargo.toml index 8e1df9d08..ca1f27127 100644 --- a/crates/slotmap-careful/Cargo.toml +++ b/crates/slotmap-careful/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "slotmap-careful" -version = "0.2.3" +version = "0.2.4" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" diff --git a/crates/test-temp-dir/Cargo.toml b/crates/test-temp-dir/Cargo.toml index b265775e0..a963587f6 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.3" +version = "0.3.4" # 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 b9dbbab38..4aac2667d 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.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -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.30.0" } -tor-rtcompat = { version = "0.30.0", path = "../tor-rtcompat" } -tor-rtmock = { path = "../tor-rtmock", version = "0.30.0" } +tor-error = { path = "../tor-error", version = "0.31.0" } +tor-rtcompat = { version = "0.31.0", path = "../tor-rtcompat" } +tor-rtmock = { path = "../tor-rtmock", version = "0.31.0" } [features] full = ["oneshot-fused-workaround/full"] diff --git a/crates/tor-basic-utils/Cargo.toml b/crates/tor-basic-utils/Cargo.toml index 83f162334..90ff1573b 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.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" diff --git a/crates/tor-bytes/Cargo.toml b/crates/tor-bytes/Cargo.toml index 57e4f7d30..93bafdb3a 100644 --- a/crates/tor-bytes/Cargo.toml +++ b/crates/tor-bytes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-bytes" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -18,8 +18,8 @@ digest = { version = "0.10.0", features = ["subtle", "mac"] } educe = "0.4.22" safelog = { path = "../safelog", version = "0.4.5" } thiserror = "2" -tor-error = { path = "../tor-error", version = "0.30.0", default-features = false } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.30.0", optional = true } +tor-error = { path = "../tor-error", version = "0.31.0", default-features = false } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.31.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 4ac7a3253..0bfb0debc 100644 --- a/crates/tor-cell/Cargo.toml +++ b/crates/tor-cell/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-cell" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -61,16 +61,16 @@ paste = "1" rand = "0.9.1" smallvec = "1.10" thiserror = "2" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-bytes = { path = "../tor-bytes", version = "0.30.0" } -tor-cert = { path = "../tor-cert", version = "0.30.0" } -tor-error = { path = "../tor-error", version = "0.30.0" } -tor-hscrypto = { path = "../tor-hscrypto", version = "0.30.0", optional = true, features = ["memquota-memcost"] } -tor-linkspec = { path = "../tor-linkspec", version = "0.30.0" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.30.0", features = ["memquota-memcost"] } -tor-memquota = { version = "0.30.0", path = "../tor-memquota", default-features = false } -tor-protover = { path = "../tor-protover", version = "0.30.0", features = ["tor-bytes"] } -tor-units = { path = "../tor-units", version = "0.30.0", features = ["memquota-memcost"] } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-bytes = { path = "../tor-bytes", version = "0.31.0" } +tor-cert = { path = "../tor-cert", version = "0.31.0" } +tor-error = { path = "../tor-error", version = "0.31.0" } +tor-hscrypto = { path = "../tor-hscrypto", version = "0.31.0", optional = true, features = ["memquota-memcost"] } +tor-linkspec = { path = "../tor-linkspec", version = "0.31.0" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.31.0", features = ["memquota-memcost"] } +tor-memquota = { version = "0.31.0", path = "../tor-memquota", default-features = false } +tor-protover = { path = "../tor-protover", version = "0.31.0", features = ["tor-bytes"] } +tor-units = { path = "../tor-units", version = "0.31.0", features = ["memquota-memcost"] } void = "1" [dev-dependencies] diff --git a/crates/tor-cert/Cargo.toml b/crates/tor-cert/Cargo.toml index 00761d489..ba8b2541a 100644 --- a/crates/tor-cert/Cargo.toml +++ b/crates/tor-cert/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-cert" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -31,9 +31,9 @@ derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti", opt derive_more = { version = "2.0.1", features = ["full"] } digest = "0.10.0" thiserror = "2" -tor-bytes = { path = "../tor-bytes", version = "0.30.0" } -tor-checkable = { path = "../tor-checkable", version = "0.30.0" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.30.0" } +tor-bytes = { path = "../tor-bytes", version = "0.31.0" } +tor-checkable = { path = "../tor-checkable", version = "0.31.0" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.31.0" } [dev-dependencies] base64ct = "1.5.1" diff --git a/crates/tor-chanmgr/Cargo.toml b/crates/tor-chanmgr/Cargo.toml index 0406e630e..77f058174 100644 --- a/crates/tor-chanmgr/Cargo.toml +++ b/crates/tor-chanmgr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-chanmgr" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -54,21 +54,21 @@ rand = "0.9.1" safelog = { path = "../safelog", version = "0.4.5" } serde = { version = "1.0.103", features = ["derive"] } thiserror = "2" -tor-async-utils = { version = "0.30.0", path = "../tor-async-utils" } -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-cell = { path = "../tor-cell", version = "0.30.0" } -tor-config = { path = "../tor-config", version = "0.30.0" } -tor-error = { path = "../tor-error", version = "0.30.0", features = ["tracing"] } -tor-linkspec = { path = "../tor-linkspec", version = "0.30.0" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.30.0" } -tor-memquota = { version = "0.30.0", path = "../tor-memquota", default-features = false } -tor-netdir = { path = "../tor-netdir", version = "0.30.0" } -tor-proto = { path = "../tor-proto", version = "0.30.0" } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0" } -tor-socksproto = { path = "../tor-socksproto", version = "0.30.0", default-features = false, features = [ +tor-async-utils = { version = "0.31.0", path = "../tor-async-utils" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-cell = { path = "../tor-cell", version = "0.31.0" } +tor-config = { path = "../tor-config", version = "0.31.0" } +tor-error = { path = "../tor-error", version = "0.31.0", features = ["tracing"] } +tor-linkspec = { path = "../tor-linkspec", version = "0.31.0" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.31.0" } +tor-memquota = { version = "0.31.0", path = "../tor-memquota", default-features = false } +tor-netdir = { path = "../tor-netdir", version = "0.31.0" } +tor-proto = { path = "../tor-proto", version = "0.31.0" } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0" } +tor-socksproto = { path = "../tor-socksproto", version = "0.31.0", default-features = false, features = [ "client-handshake", ] } -tor-units = { path = "../tor-units", version = "0.30.0" } +tor-units = { path = "../tor-units", version = "0.31.0" } tracing = "0.1.36" void = "1" @@ -77,10 +77,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.30.0", features = ["testing"] } -tor-netdir = { path = "../tor-netdir", version = "0.30.0", features = ["testing"] } -tor-proto = { path = "../tor-proto", version = "0.30.0", features = ["testing"] } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0", features = ["tokio", "native-tls"] } -tor-rtmock = { path = "../tor-rtmock", version = "0.30.0" } +tor-cell = { path = "../tor-cell", version = "0.31.0", features = ["testing"] } +tor-netdir = { path = "../tor-netdir", version = "0.31.0", features = ["testing"] } +tor-proto = { path = "../tor-proto", version = "0.31.0", features = ["testing"] } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0", features = ["tokio", "native-tls"] } +tor-rtmock = { path = "../tor-rtmock", version = "0.31.0" } [package.metadata.docs.rs] all-features = true diff --git a/crates/tor-checkable/Cargo.toml b/crates/tor-checkable/Cargo.toml index fe9ede90a..d1d4a4acb 100644 --- a/crates/tor-checkable/Cargo.toml +++ b/crates/tor-checkable/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-checkable" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -21,7 +21,7 @@ __is_experimental = [] humantime = "2" signature = "2" thiserror = "2" -tor-llcrypto = { path = "../tor-llcrypto", version = "0.30.0" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.31.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 daf8694e9..da9bcf598 100644 --- a/crates/tor-circmgr/Cargo.toml +++ b/crates/tor-circmgr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-circmgr" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -87,23 +87,23 @@ safelog = { path = "../safelog", version = "0.4.5" } serde = { version = "1.0.103", features = ["derive"] } static_assertions = "1" thiserror = "2" -tor-async-utils = { version = "0.30.0", path = "../tor-async-utils" } -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-chanmgr = { path = "../tor-chanmgr", version = "0.30.0" } -tor-config = { path = "../tor-config", version = "0.30.0" } -tor-error = { path = "../tor-error", version = "0.30.0", features = ["tracing"] } -tor-geoip = { path = "../tor-geoip", version = "0.30.0", optional = true } -tor-guardmgr = { path = "../tor-guardmgr", version = "0.30.0" } -tor-linkspec = { path = "../tor-linkspec", version = "0.30.0" } -tor-memquota = { version = "0.30.0", path = "../tor-memquota", default-features = false } -tor-netdir = { path = "../tor-netdir", version = "0.30.0" } -tor-netdoc = { path = "../tor-netdoc", version = "0.30.0" } -tor-persist = { path = "../tor-persist", version = "0.30.0" } -tor-proto = { path = "../tor-proto", version = "0.30.0" } -tor-protover = { path = "../tor-protover", version = "0.30.0" } -tor-relay-selection = { path = "../tor-relay-selection", version = "0.30.0" } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0" } -tor-units = { path = "../tor-units", version = "0.30.0" } +tor-async-utils = { version = "0.31.0", path = "../tor-async-utils" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-chanmgr = { path = "../tor-chanmgr", version = "0.31.0" } +tor-config = { path = "../tor-config", version = "0.31.0" } +tor-error = { path = "../tor-error", version = "0.31.0", features = ["tracing"] } +tor-geoip = { path = "../tor-geoip", version = "0.31.0", optional = true } +tor-guardmgr = { path = "../tor-guardmgr", version = "0.31.0" } +tor-linkspec = { path = "../tor-linkspec", version = "0.31.0" } +tor-memquota = { version = "0.31.0", path = "../tor-memquota", default-features = false } +tor-netdir = { path = "../tor-netdir", version = "0.31.0" } +tor-netdoc = { path = "../tor-netdoc", version = "0.31.0" } +tor-persist = { path = "../tor-persist", version = "0.31.0" } +tor-proto = { path = "../tor-proto", version = "0.31.0" } +tor-protover = { path = "../tor-protover", version = "0.31.0" } +tor-relay-selection = { path = "../tor-relay-selection", version = "0.31.0" } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0" } +tor-units = { path = "../tor-units", version = "0.31.0" } tracing = "0.1.36" visibility = { version = "0.1.0", optional = true } void = "1.0" @@ -112,11 +112,11 @@ weak-table = "0.3.0" [dev-dependencies] futures-await-test = "0.3.0" hex = "0.4" -tor-guardmgr = { path = "../tor-guardmgr", version = "0.30.0", features = ["testing", "vanguards"] } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.30.0" } -tor-netdir = { path = "../tor-netdir", version = "0.30.0", features = ["testing"] } -tor-persist = { path = "../tor-persist", version = "0.30.0", features = ["testing"] } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0", features = ["tokio", "native-tls"] } -tor-rtmock = { path = "../tor-rtmock", version = "0.30.0" } +tor-guardmgr = { path = "../tor-guardmgr", version = "0.31.0", features = ["testing", "vanguards"] } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.31.0" } +tor-netdir = { path = "../tor-netdir", version = "0.31.0", features = ["testing"] } +tor-persist = { path = "../tor-persist", version = "0.31.0", features = ["testing"] } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0", features = ["tokio", "native-tls"] } +tor-rtmock = { path = "../tor-rtmock", version = "0.31.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 6fa871099..18617eb11 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.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -45,8 +45,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.30.0" } -tor-general-addr = { path = "../tor-general-addr", version = "0.30.0", optional = true } +tor-error = { path = "../tor-error", version = "0.31.0" } +tor-general-addr = { path = "../tor-general-addr", version = "0.31.0", optional = true } [dev-dependencies] assert_matches = "1.5.0" @@ -55,7 +55,7 @@ dirs = "6.0.0" rmp-serde = "1" serde_json = "1.0.50" toml = "0.8.8" -tor-config = { path = "../tor-config", version = "0.30.0" } +tor-config = { path = "../tor-config", version = "0.31.0" } [package.metadata.docs.rs] all-features = true diff --git a/crates/tor-config/Cargo.toml b/crates/tor-config/Cargo.toml index ad4353f05..7a06d6a00 100644 --- a/crates/tor-config/Cargo.toml +++ b/crates/tor-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-config" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -42,7 +42,7 @@ derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" } educe = "0.4.22" either = "1" figment = { version = "0.10.18", features = ["toml"] } -fs-mistrust = { path = "../fs-mistrust", version = "0.9.1" } +fs-mistrust = { path = "../fs-mistrust", version = "0.9.3" } futures = "0.3.14" itertools = "0.14.0" notify = { version = "8", default-features = false, features = ["macos_kqueue"] } @@ -56,9 +56,9 @@ serde_ignored = "0.1.3" strum = { version = "0.27.1", features = ["derive"] } thiserror = "2" toml = "0.8.8" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-error = { path = "../tor-error", version = "0.30.0" } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-error = { path = "../tor-error", version = "0.31.0" } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0" } tracing = "0.1.36" void = "1" @@ -66,7 +66,7 @@ void = "1" serde_json = "1.0.50" tempfile = "3" test-temp-dir = { version = "0.3.3", path = "../test-temp-dir" } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0", features = ["tokio", "native-tls"] } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0", features = ["tokio", "native-tls"] } tracing-test = "0.2.4" [package.metadata.docs.rs] diff --git a/crates/tor-consdiff/Cargo.toml b/crates/tor-consdiff/Cargo.toml index 43123a55e..c369871b3 100644 --- a/crates/tor-consdiff/Cargo.toml +++ b/crates/tor-consdiff/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-consdiff" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -23,6 +23,6 @@ __is_experimental = [] digest = "0.10.0" hex = "0.4" thiserror = "2" -tor-llcrypto = { path = "../tor-llcrypto", version = "0.30.0" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.31.0" } [package.metadata.docs.rs] all-features = true diff --git a/crates/tor-dirclient/Cargo.toml b/crates/tor-dirclient/Cargo.toml index 998ee645f..9b3483d82 100644 --- a/crates/tor-dirclient/Cargo.toml +++ b/crates/tor-dirclient/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-dirclient" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -55,19 +55,19 @@ httpdate = "1.0" itertools = "0.14.0" memchr = "2.5" thiserror = "2" -tor-circmgr = { path = "../tor-circmgr", version = "0.30.0" } -tor-error = { path = "../tor-error", version = "0.30.0" } -tor-hscrypto = { path = "../tor-hscrypto", version = "0.30.0", optional = true } -tor-linkspec = { path = "../tor-linkspec", version = "0.30.0" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.30.0" } -tor-netdoc = { path = "../tor-netdoc", version = "0.30.0" } -tor-proto = { path = "../tor-proto", version = "0.30.0" } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0" } +tor-circmgr = { path = "../tor-circmgr", version = "0.31.0" } +tor-error = { path = "../tor-error", version = "0.31.0" } +tor-hscrypto = { path = "../tor-hscrypto", version = "0.31.0", optional = true } +tor-linkspec = { path = "../tor-linkspec", version = "0.31.0" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.31.0" } +tor-netdoc = { path = "../tor-netdoc", version = "0.31.0" } +tor-proto = { path = "../tor-proto", version = "0.31.0" } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0" } tracing = "0.1.36" [dev-dependencies] futures-await-test = "0.3.0" -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0", features = ["tokio", "native-tls"] } -tor-rtmock = { path = "../tor-rtmock", version = "0.30.0" } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0", features = ["tokio", "native-tls"] } +tor-rtmock = { path = "../tor-rtmock", version = "0.31.0" } [package.metadata.docs.rs] all-features = true diff --git a/crates/tor-dirmgr/Cargo.toml b/crates/tor-dirmgr/Cargo.toml index 95d1180cc..9f72facca 100644 --- a/crates/tor-dirmgr/Cargo.toml +++ b/crates/tor-dirmgr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-dirmgr" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -66,7 +66,7 @@ derive_more = { version = "2.0.1", features = ["full"] } digest = "0.10.0" educe = "0.4.22" event-listener = "5" -fs-mistrust = { path = "../fs-mistrust", version = "0.9.1" } +fs-mistrust = { path = "../fs-mistrust", version = "0.9.3" } fslock = { version = "0.2.0" } futures = "0.3.14" hex = "0.4" @@ -89,23 +89,23 @@ static_assertions = "1" strum = { version = "0.27.1", features = ["derive"] } thiserror = "2" time = { version = "0.3.20", features = ["formatting", "parsing"] } -tor-async-utils = { version = "0.30.0", path = "../tor-async-utils" } -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-checkable = { path = "../tor-checkable", version = "0.30.0" } -tor-circmgr = { path = "../tor-circmgr", version = "0.30.0" } -tor-config = { path = "../tor-config", version = "0.30.0" } -tor-consdiff = { path = "../tor-consdiff", version = "0.30.0" } -tor-dirclient = { path = "../tor-dirclient", version = "0.30.0", default-features = false } -tor-error = { path = "../tor-error", version = "0.30.0", features = ["tracing"] } -tor-geoip = { path = "../tor-geoip", version = "0.30.0", optional = true } -tor-guardmgr = { path = "../tor-guardmgr", version = "0.30.0" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.30.0" } -tor-netdir = { path = "../tor-netdir", version = "0.30.0" } -tor-netdoc = { path = "../tor-netdoc", version = "0.30.0" } -tor-persist = { path = "../tor-persist", version = "0.30.0" } -tor-proto = { path = "../tor-proto", version = "0.30.0" } -tor-protover = { path = "../tor-protover", version = "0.30.0", features = ["serde"] } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0" } +tor-async-utils = { version = "0.31.0", path = "../tor-async-utils" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-checkable = { path = "../tor-checkable", version = "0.31.0" } +tor-circmgr = { path = "../tor-circmgr", version = "0.31.0" } +tor-config = { path = "../tor-config", version = "0.31.0" } +tor-consdiff = { path = "../tor-consdiff", version = "0.31.0" } +tor-dirclient = { path = "../tor-dirclient", version = "0.31.0", default-features = false } +tor-error = { path = "../tor-error", version = "0.31.0", features = ["tracing"] } +tor-geoip = { path = "../tor-geoip", version = "0.31.0", optional = true } +tor-guardmgr = { path = "../tor-guardmgr", version = "0.31.0" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.31.0" } +tor-netdir = { path = "../tor-netdir", version = "0.31.0" } +tor-netdoc = { path = "../tor-netdoc", version = "0.31.0" } +tor-persist = { path = "../tor-persist", version = "0.31.0" } +tor-proto = { path = "../tor-proto", version = "0.31.0" } +tor-protover = { path = "../tor-protover", version = "0.31.0", features = ["serde"] } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0" } tracing = "0.1.36" [dev-dependencies] @@ -114,9 +114,9 @@ filetime = "0.2" float_eq = "1.0.0" hex-literal = "0.4" tempfile = "3" -tor-linkspec = { path = "../tor-linkspec", version = "0.30.0" } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0", features = ["tokio", "native-tls"] } -tor-rtmock = { path = "../tor-rtmock", version = "0.30.0" } +tor-linkspec = { path = "../tor-linkspec", version = "0.31.0" } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0", features = ["tokio", "native-tls"] } +tor-rtmock = { path = "../tor-rtmock", version = "0.31.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 be1d5a730..a7bacf1fb 100644 --- a/crates/tor-error/Cargo.toml +++ b/crates/tor-error/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-error" -version = "0.30.0" +version = "0.31.0" authors = ["Ian Jackson <[email protected]>"] edition = "2021" rust-version = "1.83" diff --git a/crates/tor-general-addr/Cargo.toml b/crates/tor-general-addr/Cargo.toml index e82321939..94764dc6f 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.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" diff --git a/crates/tor-geoip/Cargo.toml b/crates/tor-geoip/Cargo.toml index c3e9ec799..4ee9fbb07 100644 --- a/crates/tor-geoip/Cargo.toml +++ b/crates/tor-geoip/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-geoip" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "eta <[email protected]>"] edition = "2021" rust-version = "1.83" diff --git a/crates/tor-guardmgr/Cargo.toml b/crates/tor-guardmgr/Cargo.toml index f83c40dba..71cfb32cd 100644 --- a/crates/tor-guardmgr/Cargo.toml +++ b/crates/tor-guardmgr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-guardmgr" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -78,34 +78,34 @@ safelog = { path = "../safelog", version = "0.4.5" } serde = { version = "1.0.103", features = ["derive"] } strum = { version = "0.27.1", features = ["derive"] } thiserror = "2" -tor-async-utils = { version = "0.30.0", path = "../tor-async-utils" } -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-config = { path = "../tor-config", version = "0.30.0" } -tor-error = { path = "../tor-error", version = "0.30.0" } -tor-linkspec = { path = "../tor-linkspec", version = "0.30.0" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.30.0" } -tor-netdir = { path = "../tor-netdir", version = "0.30.0" } -tor-netdoc = { path = "../tor-netdoc", version = "0.30.0" } # for address pattern -tor-persist = { path = "../tor-persist", version = "0.30.0" } -tor-proto = { path = "../tor-proto", version = "0.30.0" } -tor-protover = { path = "../tor-protover", version = "0.30.0", optional = true } -tor-relay-selection = { path = "../tor-relay-selection", version = "0.30.0" } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0" } -tor-rtmock = { path = "../tor-rtmock", version = "0.30.0", optional = true } -tor-units = { path = "../tor-units", version = "0.30.0" } +tor-async-utils = { version = "0.31.0", path = "../tor-async-utils" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-config = { path = "../tor-config", version = "0.31.0" } +tor-error = { path = "../tor-error", version = "0.31.0" } +tor-linkspec = { path = "../tor-linkspec", version = "0.31.0" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.31.0" } +tor-netdir = { path = "../tor-netdir", version = "0.31.0" } +tor-netdoc = { path = "../tor-netdoc", version = "0.31.0" } # for address pattern +tor-persist = { path = "../tor-persist", version = "0.31.0" } +tor-proto = { path = "../tor-proto", version = "0.31.0" } +tor-protover = { path = "../tor-protover", version = "0.31.0", optional = true } +tor-relay-selection = { path = "../tor-relay-selection", version = "0.31.0" } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0" } +tor-rtmock = { path = "../tor-rtmock", version = "0.31.0", optional = true } +tor-units = { path = "../tor-units", version = "0.31.0" } tracing = "0.1.36" [dev-dependencies] float_eq = "1.0.0" -fs-mistrust = { path = "../fs-mistrust", version = "0.9.1" } +fs-mistrust = { path = "../fs-mistrust", version = "0.9.3" } serde_json = "1.0.50" tempfile = "3" toml = "0.8.8" -tor-netdir = { path = "../tor-netdir", version = "0.30.0", features = ["testing"] } -tor-netdoc = { path = "../tor-netdoc", version = "0.30.0" } -tor-persist = { path = "../tor-persist", version = "0.30.0", features = ["testing"] } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0", features = ["tokio", "native-tls"] } -tor-rtmock = { path = "../tor-rtmock", version = "0.30.0" } +tor-netdir = { path = "../tor-netdir", version = "0.31.0", features = ["testing"] } +tor-netdoc = { path = "../tor-netdoc", version = "0.31.0" } +tor-persist = { path = "../tor-persist", version = "0.31.0", features = ["testing"] } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0", features = ["tokio", "native-tls"] } +tor-rtmock = { path = "../tor-rtmock", version = "0.31.0" } [package.metadata.docs.rs] all-features = true diff --git a/crates/tor-hsclient/Cargo.toml b/crates/tor-hsclient/Cargo.toml index bc82dc3a1..1dbad2127 100644 --- a/crates/tor-hsclient/Cargo.toml +++ b/crates/tor-hsclient/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-hsclient" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -69,39 +69,39 @@ safelog = { path = "../safelog", version = "0.4.5" } slotmap-careful = { path = "../slotmap-careful", version = "0.2.2" } strum = { version = "0.27.1", features = ["derive"] } thiserror = "2" -tor-async-utils = { version = "0.30.0", path = "../tor-async-utils" } -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-bytes = { path = "../tor-bytes", version = "0.30.0" } -tor-cell = { path = "../tor-cell", version = "0.30.0", features = ["hs"] } -tor-checkable = { path = "../tor-checkable", version = "0.30.0" } -tor-circmgr = { version = "0.30.0", path = "../tor-circmgr", features = ["hs-client"] } -tor-config = { path = "../tor-config", version = "0.30.0" } -tor-dirclient = { path = "../tor-dirclient", version = "0.30.0", default-features = false, features = ["hs-client"] } -tor-error = { path = "../tor-error", version = "0.30.0", features = ["tracing"] } -tor-hscrypto = { version = "0.30.0", path = "../tor-hscrypto" } -tor-keymgr = { version = "0.30.0", path = "../tor-keymgr", default-features = false } -tor-linkspec = { version = "0.30.0", path = "../tor-linkspec", features = ["decode", "verbatim"] } -tor-llcrypto = { version = "0.30.0", path = "../tor-llcrypto" } -tor-memquota = { version = "0.30.0", path = "../tor-memquota", default-features = false } -tor-netdir = { version = "0.30.0", path = "../tor-netdir", features = ["hs-client"] } -tor-netdoc = { path = "../tor-netdoc", version = "0.30.0", features = ["hs-client"] } -tor-persist = { path = "../tor-persist", version = "0.30.0" } -tor-proto = { version = "0.30.0", path = "../tor-proto", features = ["hs-client", "send-control-msg"] } -tor-protover = { version = "0.30.0", path = "../tor-protover" } -tor-rtcompat = { version = "0.30.0", path = "../tor-rtcompat" } +tor-async-utils = { version = "0.31.0", path = "../tor-async-utils" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-bytes = { path = "../tor-bytes", version = "0.31.0" } +tor-cell = { path = "../tor-cell", version = "0.31.0", features = ["hs"] } +tor-checkable = { path = "../tor-checkable", version = "0.31.0" } +tor-circmgr = { version = "0.31.0", path = "../tor-circmgr", features = ["hs-client"] } +tor-config = { path = "../tor-config", version = "0.31.0" } +tor-dirclient = { path = "../tor-dirclient", version = "0.31.0", default-features = false, features = ["hs-client"] } +tor-error = { path = "../tor-error", version = "0.31.0", features = ["tracing"] } +tor-hscrypto = { version = "0.31.0", path = "../tor-hscrypto" } +tor-keymgr = { version = "0.31.0", path = "../tor-keymgr", default-features = false } +tor-linkspec = { version = "0.31.0", path = "../tor-linkspec", features = ["decode", "verbatim"] } +tor-llcrypto = { version = "0.31.0", path = "../tor-llcrypto" } +tor-memquota = { version = "0.31.0", path = "../tor-memquota", default-features = false } +tor-netdir = { version = "0.31.0", path = "../tor-netdir", features = ["hs-client"] } +tor-netdoc = { path = "../tor-netdoc", version = "0.31.0", features = ["hs-client"] } +tor-persist = { path = "../tor-persist", version = "0.31.0" } +tor-proto = { version = "0.31.0", path = "../tor-proto", features = ["hs-client", "send-control-msg"] } +tor-protover = { version = "0.31.0", path = "../tor-protover" } +tor-rtcompat = { version = "0.31.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.30.0" } -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-chanmgr = { path = "../tor-chanmgr", version = "0.30.0" } -tor-circmgr = { version = "0.30.0", path = "../tor-circmgr", features = ["hs-client", "testing"] } -tor-guardmgr = { path = "../tor-guardmgr", version = "0.30.0", features = ["testing"] } -tor-netdir = { path = "../tor-netdir", version = "0.30.0", features = ["testing"] } -tor-netdoc = { path = "../tor-netdoc", version = "0.30.0", features = ["testing"] } -tor-persist = { path = "../tor-persist", version = "0.30.0", features = ["testing"] } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0", features = ["tokio", "native-tls"] } -tor-rtmock = { path = "../tor-rtmock", version = "0.30.0" } +tor-async-utils = { path = "../tor-async-utils", version = "0.31.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-chanmgr = { path = "../tor-chanmgr", version = "0.31.0" } +tor-circmgr = { version = "0.31.0", path = "../tor-circmgr", features = ["hs-client", "testing"] } +tor-guardmgr = { path = "../tor-guardmgr", version = "0.31.0", features = ["testing"] } +tor-netdir = { path = "../tor-netdir", version = "0.31.0", features = ["testing"] } +tor-netdoc = { path = "../tor-netdoc", version = "0.31.0", features = ["testing"] } +tor-persist = { path = "../tor-persist", version = "0.31.0", features = ["testing"] } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0", features = ["tokio", "native-tls"] } +tor-rtmock = { path = "../tor-rtmock", version = "0.31.0" } tracing-test = "0.2.4" diff --git a/crates/tor-hscrypto/Cargo.toml b/crates/tor-hscrypto/Cargo.toml index 4c29f5504..23d2eacf9 100644 --- a/crates/tor-hscrypto/Cargo.toml +++ b/crates/tor-hscrypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-hscrypto" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -49,7 +49,7 @@ data-encoding = "2.3.1" derive-deftly = { version = "1.0.0", optional = true } derive_more = { version = "2.0.1", features = ["full"] } digest = "0.10.0" -equix = { path = "../equix", version = "0.2.3", optional = true } +equix = { path = "../equix", version = "0.2.4", optional = true } hex = "0.4" humantime = "2" itertools = "0.14.0" @@ -60,19 +60,19 @@ serde = { version = "1.0.103", features = ["derive"] } signature = "2" subtle = "2" thiserror = "2" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-bytes = { version = "0.30.0", path = "../tor-bytes" } -tor-error = { version = "0.30.0", path = "../tor-error" } -tor-key-forge = { version = "0.30.0", path = "../tor-key-forge" } -tor-llcrypto = { version = "0.30.0", path = "../tor-llcrypto", features = ["hsv3-client", "hsv3-service"] } -tor-memquota = { version = "0.30.0", path = "../tor-memquota", default-features = false, optional = true } -tor-units = { path = "../tor-units", version = "0.30.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-bytes = { version = "0.31.0", path = "../tor-bytes" } +tor-error = { version = "0.31.0", path = "../tor-error" } +tor-key-forge = { version = "0.31.0", path = "../tor-key-forge" } +tor-llcrypto = { version = "0.31.0", path = "../tor-llcrypto", features = ["hsv3-client", "hsv3-service"] } +tor-memquota = { version = "0.31.0", path = "../tor-memquota", default-features = false, optional = true } +tor-units = { path = "../tor-units", version = "0.31.0" } void = "1" zeroize = { version = "1", optional = true } [dev-dependencies] hex-literal = "0.4" -tor-basic-utils = { version = "0.30.0", path = "../tor-basic-utils" } +tor-basic-utils = { version = "0.31.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 1fc69a0d4..cddf37fde 100644 --- a/crates/tor-hsrproxy/Cargo.toml +++ b/crates/tor-hsrproxy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-hsrproxy" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -56,14 +56,14 @@ serde = { version = "1.0.103", features = ["derive"] } serde_with = "3.0.0" strum = { version = "0.27.1", features = ["derive"] } thiserror = "2" -tor-async-utils = { version = "0.30.0", path = "../tor-async-utils" } -tor-cell = { version = "0.30.0", path = "../tor-cell" } -tor-config = { version = "0.30.0", path = "../tor-config" } -tor-error = { version = "0.30.0", path = "../tor-error" } -tor-hsservice = { path = "../tor-hsservice", version = "0.30.0" } -tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.30.0" } -tor-proto = { version = "0.30.0", path = "../tor-proto", features = ["hs-service"] } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0" } +tor-async-utils = { version = "0.31.0", path = "../tor-async-utils" } +tor-cell = { version = "0.31.0", path = "../tor-cell" } +tor-config = { version = "0.31.0", path = "../tor-config" } +tor-error = { version = "0.31.0", path = "../tor-error" } +tor-hsservice = { path = "../tor-hsservice", version = "0.31.0" } +tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.31.0" } +tor-proto = { version = "0.31.0", path = "../tor-proto", features = ["hs-service"] } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0" } tracing = "0.1.36" void = "1" diff --git a/crates/tor-hsservice/Cargo.toml b/crates/tor-hsservice/Cargo.toml index e0edf7bec..6175fb8d2 100644 --- a/crates/tor-hsservice/Cargo.toml +++ b/crates/tor-hsservice/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-hsservice" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -79,7 +79,7 @@ derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" } derive_more = { version = "2.0.1", features = ["full"] } digest = "0.10.0" educe = "0.4.22" -fs-mistrust = { path = "../fs-mistrust", version = "0.9.1", features = ["serde"] } +fs-mistrust = { path = "../fs-mistrust", version = "0.9.3", features = ["serde"] } futures = "0.3.14" growable-bloom-filter = "2.0.1" hex = "0.4" @@ -97,32 +97,32 @@ serde = { version = "1.0.103", features = ["derive"] } serde_with = "3.0.0" strum = { version = "0.27.1", features = ["derive"] } thiserror = "2" -tor-async-utils = { path = "../tor-async-utils", version = "0.30.0" } -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-bytes = { version = "0.30.0", path = "../tor-bytes" } -tor-cell = { version = "0.30.0", path = "../tor-cell", features = ["hs"] } -tor-checkable = { version = "0.30.0", path = "../tor-checkable", optional = true } -tor-circmgr = { version = "0.30.0", path = "../tor-circmgr", features = ["hs-service"] } -tor-config = { version = "0.30.0", path = "../tor-config" } -tor-config-path = { version = "0.30.0", path = "../tor-config-path" } -tor-dirclient = { path = "../tor-dirclient", version = "0.30.0", default-features = false, features = ["hs-service"] } -tor-error = { version = "0.30.0", path = "../tor-error" } -tor-hscrypto = { version = "0.30.0", path = "../tor-hscrypto", features = ["ope"] } -tor-keymgr = { version = "0.30.0", path = "../tor-keymgr", features = ["keymgr"] } -tor-linkspec = { version = "0.30.0", path = "../tor-linkspec", features = ["verbatim", "decode"] } -tor-llcrypto = { version = "0.30.0", path = "../tor-llcrypto" } -tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.30.0" } -tor-netdir = { version = "0.30.0", path = "../tor-netdir", features = ["hs-service"] } -tor-netdoc = { version = "0.30.0", path = "../tor-netdoc", features = ["hs-service"] } -tor-persist = { version = "0.30.0", path = "../tor-persist", features = ["state-dir"] } -tor-proto = { version = "0.30.0", path = "../tor-proto", features = [ +tor-async-utils = { path = "../tor-async-utils", version = "0.31.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-bytes = { version = "0.31.0", path = "../tor-bytes" } +tor-cell = { version = "0.31.0", path = "../tor-cell", features = ["hs"] } +tor-checkable = { version = "0.31.0", path = "../tor-checkable", optional = true } +tor-circmgr = { version = "0.31.0", path = "../tor-circmgr", features = ["hs-service"] } +tor-config = { version = "0.31.0", path = "../tor-config" } +tor-config-path = { version = "0.31.0", path = "../tor-config-path" } +tor-dirclient = { path = "../tor-dirclient", version = "0.31.0", default-features = false, features = ["hs-service"] } +tor-error = { version = "0.31.0", path = "../tor-error" } +tor-hscrypto = { version = "0.31.0", path = "../tor-hscrypto", features = ["ope"] } +tor-keymgr = { version = "0.31.0", path = "../tor-keymgr", features = ["keymgr"] } +tor-linkspec = { version = "0.31.0", path = "../tor-linkspec", features = ["verbatim", "decode"] } +tor-llcrypto = { version = "0.31.0", path = "../tor-llcrypto" } +tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.31.0" } +tor-netdir = { version = "0.31.0", path = "../tor-netdir", features = ["hs-service"] } +tor-netdoc = { version = "0.31.0", path = "../tor-netdoc", features = ["hs-service"] } +tor-persist = { version = "0.31.0", path = "../tor-persist", features = ["state-dir"] } +tor-proto = { version = "0.31.0", path = "../tor-proto", features = [ "experimental-api", "hs-service", "send-control-msg", ] } -tor-protover = { version = "0.30.0", path = "../tor-protover" } -tor-relay-selection = { path = "../tor-relay-selection", version = "0.30.0" } -tor-rtcompat = { version = "0.30.0", path = "../tor-rtcompat" } +tor-protover = { version = "0.31.0", path = "../tor-protover" } +tor-relay-selection = { path = "../tor-relay-selection", version = "0.31.0" } +tor-rtcompat = { version = "0.31.0", path = "../tor-rtcompat" } tracing = "0.1.36" void = "1" @@ -133,12 +133,12 @@ serde_json = "1.0.104" slotmap-careful = { path = "../slotmap-careful", version = "0.2.2" } tempfile = "3" test-temp-dir = { version = "0.3.3", path = "../test-temp-dir" } -tor-config = { version = "0.30.0", path = "../tor-config", features = ["testing"] } -tor-key-forge = { version = "0.30.0", path = "../tor-key-forge" } -tor-keymgr = { version = "0.30.0", path = "../tor-keymgr", features = ["keymgr", "testing"] } -tor-netdir = { version = "0.30.0", path = "../tor-netdir", features = ["hs-service", "testing"] } -tor-netdoc = { path = "../tor-netdoc", version = "0.30.0", features = ["testing"] } -tor-persist = { version = "0.30.0", path = "../tor-persist", features = ["testing"] } -tor-rtmock = { path = "../tor-rtmock", version = "0.30.0" } +tor-config = { version = "0.31.0", path = "../tor-config", features = ["testing"] } +tor-key-forge = { version = "0.31.0", path = "../tor-key-forge" } +tor-keymgr = { version = "0.31.0", path = "../tor-keymgr", features = ["keymgr", "testing"] } +tor-netdir = { version = "0.31.0", path = "../tor-netdir", features = ["hs-service", "testing"] } +tor-netdoc = { path = "../tor-netdoc", version = "0.31.0", features = ["testing"] } +tor-persist = { version = "0.31.0", path = "../tor-persist", features = ["testing"] } +tor-rtmock = { path = "../tor-rtmock", version = "0.31.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 71d76cb7e..8cac27dca 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.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc."] edition = "2021" rust-version = "1.83" @@ -33,13 +33,13 @@ rand = "0.9.1" signature = "2" ssh-key = { version = "0.6.1", features = ["std"] } thiserror = "2" -tor-bytes = { path = "../tor-bytes", version = "0.30.0", default-features = false } -tor-cert = { path = "../tor-cert", version = "0.30.0", features = ["encode", "experimental-api"] } -tor-checkable = { path = "../tor-checkable", version = "0.30.0" } -tor-error = { version = "0.30.0", path = "../tor-error" } -tor-llcrypto = { version = "0.30.0", path = "../tor-llcrypto" } +tor-bytes = { path = "../tor-bytes", version = "0.31.0", default-features = false } +tor-cert = { path = "../tor-cert", version = "0.31.0", features = ["encode", "experimental-api"] } +tor-checkable = { path = "../tor-checkable", version = "0.31.0" } +tor-error = { version = "0.31.0", path = "../tor-error" } +tor-llcrypto = { version = "0.31.0", path = "../tor-llcrypto" } [dev-dependencies] signature = "2" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-llcrypto = { version = "0.30.0", path = "../tor-llcrypto", features = ["testing"] } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-llcrypto = { version = "0.31.0", path = "../tor-llcrypto", features = ["testing"] } diff --git a/crates/tor-keymgr/Cargo.toml b/crates/tor-keymgr/Cargo.toml index e023db387..a5a3325ab 100644 --- a/crates/tor-keymgr/Cargo.toml +++ b/crates/tor-keymgr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-keymgr" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Gabriela Moldovan <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -51,7 +51,7 @@ derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" } derive_more = { version = "2.0.1", features = ["full"] } downcast-rs = "2.0.1" dyn-clone = "1.0.11" -fs-mistrust = { path = "../fs-mistrust", version = "0.9.1", features = ["serde", "walkdir"] } +fs-mistrust = { path = "../fs-mistrust", version = "0.9.3", features = ["serde", "walkdir"] } glob-match = "0.2.1" humantime = "2" inventory = "0.3.13" @@ -61,15 +61,15 @@ 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.30.0" } -tor-bytes = { path = "../tor-bytes", version = "0.30.0", default-features = false } -tor-config = { path = "../tor-config", version = "0.30.0" } -tor-config-path = { path = "../tor-config-path", version = "0.30.0" } -tor-error = { path = "../tor-error", version = "0.30.0", features = ["tracing"] } -tor-hscrypto = { path = "../tor-hscrypto", version = "0.30.0" } -tor-key-forge = { path = "../tor-key-forge", version = "0.30.0" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.30.0", features = ["keymgr"] } -tor-persist = { path = "../tor-persist", version = "0.30.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-bytes = { path = "../tor-bytes", version = "0.31.0", default-features = false } +tor-config = { path = "../tor-config", version = "0.31.0" } +tor-config-path = { path = "../tor-config-path", version = "0.31.0" } +tor-error = { path = "../tor-error", version = "0.31.0", features = ["tracing"] } +tor-hscrypto = { path = "../tor-hscrypto", version = "0.31.0" } +tor-key-forge = { path = "../tor-key-forge", version = "0.31.0" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.31.0", features = ["keymgr"] } +tor-persist = { path = "../tor-persist", version = "0.31.0" } tracing = "0.1.36" walkdir = { version = "2" } zeroize = "1" @@ -78,11 +78,11 @@ zeroize = "1" paste = "1" serde_json = "1.0.104" tempfile = "3" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-cert = { path = "../tor-cert", version = "0.30.0", features = ["encode"] } -tor-checkable = { path = "../tor-checkable", version = "0.30.0" } -tor-config = { path = "../tor-config", version = "0.30.0", features = ["testing"] } -tor-llcrypto = { version = "0.30.0", path = "../tor-llcrypto", features = ["testing"] } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-cert = { path = "../tor-cert", version = "0.31.0", features = ["encode"] } +tor-checkable = { path = "../tor-checkable", version = "0.31.0" } +tor-config = { path = "../tor-config", version = "0.31.0", features = ["testing"] } +tor-llcrypto = { version = "0.31.0", path = "../tor-llcrypto", features = ["testing"] } [package.metadata.docs.rs] all-features = true diff --git a/crates/tor-linkspec/Cargo.toml b/crates/tor-linkspec/Cargo.toml index 9f4f38aa1..b5d16c7de 100644 --- a/crates/tor-linkspec/Cargo.toml +++ b/crates/tor-linkspec/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-linkspec" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -44,12 +44,12 @@ serde = { version = "1.0.103", features = ["derive"] } serde_with = "3.0.0" strum = { version = "0.27.1", features = ["derive"] } thiserror = "2" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-bytes = { path = "../tor-bytes", version = "0.30.0" } -tor-config = { path = "../tor-config", version = "0.30.0" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.30.0", features = ["memquota-memcost"] } -tor-memquota = { version = "0.30.0", path = "../tor-memquota", default-features = false } -tor-protover = { path = "../tor-protover", version = "0.30.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-bytes = { path = "../tor-bytes", version = "0.31.0" } +tor-config = { path = "../tor-config", version = "0.31.0" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.31.0", features = ["memquota-memcost"] } +tor-memquota = { version = "0.31.0", path = "../tor-memquota", default-features = false } +tor-protover = { path = "../tor-protover", version = "0.31.0" } [dev-dependencies] hex-literal = "0.4" diff --git a/crates/tor-llcrypto/Cargo.toml b/crates/tor-llcrypto/Cargo.toml index e84f13884..a46975bbf 100644 --- a/crates/tor-llcrypto/Cargo.toml +++ b/crates/tor-llcrypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-llcrypto" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -66,7 +66,7 @@ sha3 = "0.10.6" signature = "2" subtle = "2" thiserror = "2" -tor-memquota = { version = "0.30.0", path = "../tor-memquota", default-features = false, optional = true } +tor-memquota = { version = "0.31.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"] } @@ -77,7 +77,7 @@ cipher = "0.4.1" hex-literal = "0.4" rand = "0.9.1" serde_test = "1.0.124" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } [package.metadata.docs.rs] all-features = true diff --git a/crates/tor-log-ratelim/Cargo.toml b/crates/tor-log-ratelim/Cargo.toml index 2591933e9..570949559 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.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc."] edition = "2021" rust-version = "1.83" @@ -22,8 +22,8 @@ futures = "0.3.14" humantime = "2" once_cell = "1.18" thiserror = "2" -tor-error = { path = "../tor-error", version = "0.30.0" } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0" } +tor-error = { path = "../tor-error", version = "0.31.0" } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.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 b693e8d9d..922cb12d2 100644 --- a/crates/tor-memquota/Cargo.toml +++ b/crates/tor-memquota/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-memquota" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Ian Jackson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -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.30.0" } -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0", features = ["serde"] } -tor-config = { path = "../tor-config", version = "0.30.0" } -tor-error = { path = "../tor-error", version = "0.30.0", features = ["tracing"] } -tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.30.0" } -tor-rtcompat = { version = "0.30.0", path = "../tor-rtcompat" } +tor-async-utils = { path = "../tor-async-utils", version = "0.31.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0", features = ["serde"] } +tor-config = { path = "../tor-config", version = "0.31.0" } +tor-error = { path = "../tor-error", version = "0.31.0", features = ["tracing"] } +tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.31.0" } +tor-rtcompat = { version = "0.31.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.9.1" safelog = { path = "../safelog", version = "0.4.5" } serde_json = "1.0.50" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-rtcompat = { version = "0.30.0", path = "../tor-rtcompat", features = ["tokio", "native-tls"] } -tor-rtmock = { path = "../tor-rtmock", version = "0.30.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-rtcompat = { version = "0.31.0", path = "../tor-rtcompat", features = ["tokio", "native-tls"] } +tor-rtmock = { path = "../tor-rtmock", version = "0.31.0" } tracing-test = "0.2.4" [features] diff --git a/crates/tor-netdir/Cargo.toml b/crates/tor-netdir/Cargo.toml index 87200ca5f..4ebd72c68 100644 --- a/crates/tor-netdir/Cargo.toml +++ b/crates/tor-netdir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-netdir" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -62,15 +62,15 @@ static_assertions = "1" strum = { version = "0.27.1", features = ["derive"] } thiserror = "2" time = { version = "0.3.17", features = ["macros"], optional = true } -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-error = { path = "../tor-error", version = "0.30.0" } -tor-geoip = { path = "../tor-geoip", version = "0.30.0", optional = true } -tor-hscrypto = { path = "../tor-hscrypto", version = "0.30.0", optional = true } -tor-linkspec = { path = "../tor-linkspec", version = "0.30.0" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.30.0" } -tor-netdoc = { path = "../tor-netdoc", version = "0.30.0" } -tor-protover = { path = "../tor-protover", version = "0.30.0" } -tor-units = { path = "../tor-units", version = "0.30.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-error = { path = "../tor-error", version = "0.31.0" } +tor-geoip = { path = "../tor-geoip", version = "0.31.0", optional = true } +tor-hscrypto = { path = "../tor-hscrypto", version = "0.31.0", optional = true } +tor-linkspec = { path = "../tor-linkspec", version = "0.31.0" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.31.0" } +tor-netdoc = { path = "../tor-netdoc", version = "0.31.0" } +tor-protover = { path = "../tor-protover", version = "0.31.0" } +tor-units = { path = "../tor-units", version = "0.31.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. @@ -81,6 +81,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.30.0", features = ["build_docs"] } +tor-netdoc = { path = "../tor-netdoc", version = "0.31.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 97b1690ae..2ef85c2e3 100644 --- a/crates/tor-netdoc/Cargo.toml +++ b/crates/tor-netdoc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-netdoc" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -112,17 +112,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.30.0" } -tor-bytes = { path = "../tor-bytes", version = "0.30.0" } -tor-cell = { path = "../tor-cell", version = "0.30.0" } -tor-cert = { path = "../tor-cert", version = "0.30.0" } -tor-checkable = { path = "../tor-checkable", version = "0.30.0" } -tor-error = { path = "../tor-error", version = "0.30.0" } -tor-hscrypto = { path = "../tor-hscrypto", version = "0.30.0", optional = true } -tor-linkspec = { path = "../tor-linkspec", version = "0.30.0", optional = true } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.30.0" } -tor-protover = { path = "../tor-protover", version = "0.30.0", features = ["serde"] } -tor-units = { version = "0.30.0", path = "../tor-units", optional = true } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-bytes = { path = "../tor-bytes", version = "0.31.0" } +tor-cell = { path = "../tor-cell", version = "0.31.0" } +tor-cert = { path = "../tor-cert", version = "0.31.0" } +tor-checkable = { path = "../tor-checkable", version = "0.31.0" } +tor-error = { path = "../tor-error", version = "0.31.0" } +tor-hscrypto = { path = "../tor-hscrypto", version = "0.31.0", optional = true } +tor-linkspec = { path = "../tor-linkspec", version = "0.31.0", optional = true } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.31.0" } +tor-protover = { path = "../tor-protover", version = "0.31.0", features = ["serde"] } +tor-units = { version = "0.31.0", path = "../tor-units", optional = true } visibility = { version = "0.1.0", optional = true } visible = { version = "0.0.1", optional = true } void = "1" @@ -134,7 +134,7 @@ anyhow = "1.0.23" hex-literal = "0.4" itertools = "0.14.0" serde_json = "1.0.50" -tor-basic-utils = { version = "0.30.0", path = "../tor-basic-utils" } +tor-basic-utils = { version = "0.31.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 1025015bd..dc6c6f228 100644 --- a/crates/tor-persist/Cargo.toml +++ b/crates/tor-persist/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-persist" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -35,8 +35,8 @@ amplify = { version = "4", default-features = false, features = ["derive"], opti derive-deftly = { version = "~1.0.0", features = ["full", "beta"] } derive_more = { version = "2.0.1", features = ["full"] } filetime = { version = "0.2", default-features = false } -fs-mistrust = { path = "../fs-mistrust", version = "0.9.1", features = ["walkdir"] } -fslock-guard = { path = "../fslock-guard", version = "0.2.1", optional = true } +fs-mistrust = { path = "../fs-mistrust", version = "0.9.3", features = ["walkdir"] } +fslock-guard = { path = "../fslock-guard", version = "0.2.3", optional = true } futures = "0.3.14" itertools = "0.14.0" oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.2.0" } @@ -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.30.0" } -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-error = { path = "../tor-error", version = "0.30.0", features = ["tracing"] } +tor-async-utils = { path = "../tor-async-utils", version = "0.31.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-error = { path = "../tor-error", version = "0.31.0", features = ["tracing"] } tracing = "0.1.36" void = "1" diff --git a/crates/tor-proto/Cargo.toml b/crates/tor-proto/Cargo.toml index 2d5ba254a..c6e355fe0 100644 --- a/crates/tor-proto/Cargo.toml +++ b/crates/tor-proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-proto" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -102,23 +102,23 @@ 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.30.0" } -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-bytes = { path = "../tor-bytes", version = "0.30.0" } -tor-cell = { path = "../tor-cell", version = "0.30.0" } -tor-cert = { path = "../tor-cert", version = "0.30.0" } -tor-checkable = { path = "../tor-checkable", version = "0.30.0" } -tor-config = { path = "../tor-config", version = "0.30.0" } -tor-error = { path = "../tor-error", version = "0.30.0" } -tor-hscrypto = { path = "../tor-hscrypto", version = "0.30.0", features = ["memquota-memcost"], optional = true } -tor-linkspec = { path = "../tor-linkspec", version = "0.30.0" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.30.0", features = ["memquota-memcost"] } -tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.30.0" } -tor-memquota = { version = "0.30.0", path = "../tor-memquota", default-features = false } -tor-protover = { version = "0.30.0", path = "../tor-protover" } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0" } -tor-rtmock = { path = "../tor-rtmock", version = "0.30.0" } -tor-units = { path = "../tor-units", version = "0.30.0", features = ["memquota-memcost"] } +tor-async-utils = { path = "../tor-async-utils", version = "0.31.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-bytes = { path = "../tor-bytes", version = "0.31.0" } +tor-cell = { path = "../tor-cell", version = "0.31.0" } +tor-cert = { path = "../tor-cert", version = "0.31.0" } +tor-checkable = { path = "../tor-checkable", version = "0.31.0" } +tor-config = { path = "../tor-config", version = "0.31.0" } +tor-error = { path = "../tor-error", version = "0.31.0" } +tor-hscrypto = { path = "../tor-hscrypto", version = "0.31.0", features = ["memquota-memcost"], optional = true } +tor-linkspec = { path = "../tor-linkspec", version = "0.31.0" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.31.0", features = ["memquota-memcost"] } +tor-log-ratelim = { path = "../tor-log-ratelim", version = "0.31.0" } +tor-memquota = { version = "0.31.0", path = "../tor-memquota", default-features = false } +tor-protover = { version = "0.31.0", path = "../tor-protover" } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0" } +tor-rtmock = { path = "../tor-rtmock", version = "0.31.0" } +tor-units = { path = "../tor-units", version = "0.31.0", features = ["memquota-memcost"] } tracing = "0.1.36" typenum = "1.12" visibility = { version = "0.1.0", optional = true } @@ -135,7 +135,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.30.0", features = ["tokio", "native-tls"] } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0", features = ["tokio", "native-tls"] } tracing-test = "0.2.4" [package.metadata.docs.rs] all-features = true diff --git a/crates/tor-protover/Cargo.toml b/crates/tor-protover/Cargo.toml index bad7db6b4..122eea522 100644 --- a/crates/tor-protover/Cargo.toml +++ b/crates/tor-protover/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-protover" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -16,7 +16,7 @@ caret = { path = "../caret", version = "0.5.0" } paste = "1" serde_with = { version = "3.0.0", optional = true } thiserror = "2" -tor-bytes = { path = "../tor-bytes", version = "0.30.0", optional = true } +tor-bytes = { path = "../tor-bytes", version = "0.31.0", optional = true } [features] default = [] diff --git a/crates/tor-ptmgr/Cargo.toml b/crates/tor-ptmgr/Cargo.toml index 7554ebade..ea7f98121 100644 --- a/crates/tor-ptmgr/Cargo.toml +++ b/crates/tor-ptmgr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-ptmgr" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -39,28 +39,28 @@ __is_experimental = [] async-trait = "0.1.54" cfg-if = "1.0.0" derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" } -fs-mistrust = { version = "0.9.1", path = "../fs-mistrust" } +fs-mistrust = { version = "0.9.3", path = "../fs-mistrust" } futures = "0.3.14" 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.30.0", path = "../tor-async-utils" } -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-chanmgr = { version = "0.30.0", path = "../tor-chanmgr", features = ["pt-client"] } -tor-config = { version = "0.30.0", path = "../tor-config" } -tor-config-path = { version = "0.30.0", path = "../tor-config-path" } -tor-error = { version = "0.30.0", path = "../tor-error", features = ["tracing"] } -tor-linkspec = { version = "0.30.0", path = "../tor-linkspec", features = ["pt-client"] } -tor-rtcompat = { version = "0.30.0", path = "../tor-rtcompat" } -tor-socksproto = { version = "0.30.0", path = "../tor-socksproto" } +tor-async-utils = { version = "0.31.0", path = "../tor-async-utils" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-chanmgr = { version = "0.31.0", path = "../tor-chanmgr", features = ["pt-client"] } +tor-config = { version = "0.31.0", path = "../tor-config" } +tor-config-path = { version = "0.31.0", path = "../tor-config-path" } +tor-error = { version = "0.31.0", path = "../tor-error", features = ["tracing"] } +tor-linkspec = { version = "0.31.0", path = "../tor-linkspec", features = ["pt-client"] } +tor-rtcompat = { version = "0.31.0", path = "../tor-rtcompat" } +tor-socksproto = { version = "0.31.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.30.0", features = ["tokio", "native-tls"] } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.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 3b62fb0da..aec5003cf 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.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc."] edition = "2021" rust-version = "1.83" @@ -27,13 +27,13 @@ full = [ derive-deftly = { version = "~1.0.0", features = ["full", "beta"] } derive_more = { version = "2.0.1", features = ["full"] } humantime = "2" -tor-cert = { path = "../tor-cert", version = "0.30.0", features = ["encode"] } -tor-checkable = { path = "../tor-checkable", version = "0.30.0" } -tor-error = { path = "../tor-error", version = "0.30.0" } -tor-key-forge = { path = "../tor-key-forge", version = "0.30.0" } -tor-keymgr = { path = "../tor-keymgr", version = "0.30.0" } -tor-llcrypto = { path = "../tor-llcrypto", version = "0.30.0" } -tor-persist = { path = "../tor-persist", version = "0.30.0" } +tor-cert = { path = "../tor-cert", version = "0.31.0", features = ["encode"] } +tor-checkable = { path = "../tor-checkable", version = "0.31.0" } +tor-error = { path = "../tor-error", version = "0.31.0" } +tor-key-forge = { path = "../tor-key-forge", version = "0.31.0" } +tor-keymgr = { path = "../tor-keymgr", version = "0.31.0" } +tor-llcrypto = { path = "../tor-llcrypto", version = "0.31.0" } +tor-persist = { path = "../tor-persist", version = "0.31.0" } [dev-dependencies] -tor-keymgr = { version = "0.30.0", path = "../tor-keymgr", features = ["testing"] } +tor-keymgr = { version = "0.31.0", path = "../tor-keymgr", features = ["testing"] } diff --git a/crates/tor-relay-selection/Cargo.toml b/crates/tor-relay-selection/Cargo.toml index 88db44b89..2824fbe35 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.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -31,17 +31,17 @@ __is_experimental = [] [dependencies] rand = "0.9.1" serde = { version = "1.0.103", features = ["derive"] } -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-geoip = { path = "../tor-geoip", version = "0.30.0", optional = true } -tor-linkspec = { path = "../tor-linkspec", version = "0.30.0" } -tor-netdir = { path = "../tor-netdir", version = "0.30.0" } -tor-netdoc = { path = "../tor-netdoc", version = "0.30.0" } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-geoip = { path = "../tor-geoip", version = "0.31.0", optional = true } +tor-linkspec = { path = "../tor-linkspec", version = "0.31.0" } +tor-netdir = { path = "../tor-netdir", version = "0.31.0" } +tor-netdoc = { path = "../tor-netdoc", version = "0.31.0" } [dev-dependencies] once_cell = "1" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30" } -tor-netdir = { path = "../tor-netdir", version = "0.30.0", features = ["testing"] } -tor-netdoc = { path = "../tor-netdoc", version = "0.30.0", features = ["testing"] } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31" } +tor-netdir = { path = "../tor-netdir", version = "0.31.0", features = ["testing"] } +tor-netdoc = { path = "../tor-netdoc", version = "0.31.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 3482d8f15..2e497e2bc 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.30.0" +version = "0.31.0" edition = "2021" rust-version = "1.83" authors = ["The Tor Project, Inc."] @@ -35,8 +35,8 @@ base16ct = { version = "0.2", features = ["alloc"] } cfg-if = "1.0.0" derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" } derive_more = { version = "2.0.1", features = ["full"] } -fs-mistrust = { path = "../fs-mistrust", version = "0.9.1" } -fslock-guard = { path = "../fslock-guard", version = "0.2.1", optional = true } +fs-mistrust = { path = "../fs-mistrust", version = "0.9.3" } +fslock-guard = { path = "../fslock-guard", version = "0.2.3", optional = true } rand = { version = "0.9.1" } safelog = { path = "../safelog", version = "0.4.5" } serde = { version = "1.0.103", features = ["derive"] } @@ -45,10 +45,10 @@ subtle = "2.6" thiserror = "2" tiny-keccak = { version = "2.0.2", features = ["tuple_hash"] } toml = "0.8.8" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-config-path = { path = "../tor-config-path", version = "0.30.0", features = ["address"] } -tor-general-addr = { path = "../tor-general-addr", version = "0.30.0" } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0", optional = true } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-config-path = { path = "../tor-config-path", version = "0.31.0", features = ["address"] } +tor-general-addr = { path = "../tor-general-addr", version = "0.31.0" } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0", optional = true } tracing = "0.1.36" zeroize = "1" diff --git a/crates/tor-rpcbase/Cargo.toml b/crates/tor-rpcbase/Cargo.toml index 8da80aeea..b8bf93c7a 100644 --- a/crates/tor-rpcbase/Cargo.toml +++ b/crates/tor-rpcbase/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-rpcbase" -version = "0.30.0" +version = "0.31.0" edition = "2021" rust-version = "1.83" 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.30.0" } -tor-error = { path = "../tor-error/", version = "0.30.0", features = ["rpc"] } +tor-async-utils = { path = "../tor-async-utils", version = "0.31.0" } +tor-error = { path = "../tor-error/", version = "0.31.0", features = ["rpc"] } typetag = "0.2.7" void = "1" diff --git a/crates/tor-rtcompat/Cargo.toml b/crates/tor-rtcompat/Cargo.toml index 74d3540cd..29b85eb2d 100644 --- a/crates/tor-rtcompat/Cargo.toml +++ b/crates/tor-rtcompat/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-rtcompat" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -83,8 +83,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.30.0", path = "../tor-error" } -tor-general-addr = { version = "0.30.0", path = "../tor-general-addr" } +tor-error = { version = "0.31.0", path = "../tor-error" } +tor-general-addr = { version = "0.31.0", path = "../tor-general-addr" } tracing = "0.1.36" void = "1" diff --git a/crates/tor-rtmock/Cargo.toml b/crates/tor-rtmock/Cargo.toml index b89a3482c..47b02b2cd 100644 --- a/crates/tor-rtmock/Cargo.toml +++ b/crates/tor-rtmock/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-rtmock" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -27,9 +27,9 @@ priority-queue = "2.0.3" slotmap-careful = { path = "../slotmap-careful", version = "0.2.2" } strum = { version = "0.27.1", features = ["derive"] } thiserror = "2" -tor-error = { version = "0.30.0", path = "../tor-error", features = ["tracing"] } -tor-general-addr = { version = "0.30.0", path = "../tor-general-addr" } -tor-rtcompat = { version = "0.30.0", path = "../tor-rtcompat" } +tor-error = { version = "0.31.0", path = "../tor-error", features = ["tracing"] } +tor-general-addr = { version = "0.31.0", path = "../tor-general-addr" } +tor-rtcompat = { version = "0.31.0", path = "../tor-rtcompat" } tracing = "0.1.36" tracing-test = "0.2.4" void = "1" @@ -37,9 +37,9 @@ void = "1" [dev-dependencies] futures-await-test = "0.3.0" rand = "0.9.1" -tor-basic-utils = { path = "../tor-basic-utils", version = "0.30.0" } -tor-general-addr = { path = "../tor-general-addr", version = "0.30.0" } -tor-rtcompat = { path = "../tor-rtcompat", version = "0.30.0", features = ["tokio", "native-tls"] } +tor-basic-utils = { path = "../tor-basic-utils", version = "0.31.0" } +tor-general-addr = { path = "../tor-general-addr", version = "0.31.0" } +tor-rtcompat = { path = "../tor-rtcompat", version = "0.31.0", features = ["tokio", "native-tls"] } [features] full = [ diff --git a/crates/tor-socksproto/Cargo.toml b/crates/tor-socksproto/Cargo.toml index a433a2c4a..061b35691 100644 --- a/crates/tor-socksproto/Cargo.toml +++ b/crates/tor-socksproto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-socksproto" -version = "0.30.0" +version = "0.31.0" authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -35,8 +35,8 @@ educe = "0.4.22" safelog = { path = "../safelog", version = "0.4.5" } subtle = "2" thiserror = "2" -tor-bytes = { path = "../tor-bytes", version = "0.30.0", default-features = false } -tor-error = { path = "../tor-error", version = "0.30.0", default-features = false } +tor-bytes = { path = "../tor-bytes", version = "0.31.0", default-features = false } +tor-error = { path = "../tor-error", version = "0.31.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 58667f05e..ad0d232a3 100644 --- a/crates/tor-units/Cargo.toml +++ b/crates/tor-units/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tor-units" -version = "0.30.0" +version = "0.31.0" authors = ["Dennis Jackson <[email protected]>"] edition = "2021" rust-version = "1.83" @@ -17,7 +17,7 @@ derive-deftly = { version = "1.0.0", optional = true } derive_more = { version = "2.0.1", features = ["full"] } serde = { version = "1.0.103", features = ["derive"] } thiserror = "2" -tor-memquota = { version = "0.30.0", path = "../tor-memquota", default-features = false, optional = true } +tor-memquota = { version = "0.31.0", path = "../tor-memquota", default-features = false, optional = true } [dev-dependencies] float-cmp = "0.10.0" |
