summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/arti-bench/Cargo.toml10
-rw-r--r--crates/arti-client/Cargo.toml34
-rw-r--r--crates/arti-config/Cargo.toml3
-rw-r--r--crates/arti-hyper/Cargo.toml8
-rw-r--r--crates/arti-testing/Cargo.toml16
-rw-r--r--crates/arti/Cargo.toml14
-rw-r--r--crates/caret/Cargo.toml2
-rw-r--r--crates/fs-mistrust/Cargo.toml2
-rw-r--r--crates/retry-error/Cargo.toml2
-rw-r--r--crates/safelog/Cargo.toml2
-rw-r--r--crates/tor-basic-utils/Cargo.toml2
-rw-r--r--crates/tor-bytes/Cargo.toml6
-rw-r--r--crates/tor-cell/Cargo.toml12
-rw-r--r--crates/tor-cell/semver.md (renamed from crates/tor-proto/semver.md)0
-rw-r--r--crates/tor-cert/Cargo.toml6
-rw-r--r--crates/tor-chanmgr/Cargo.toml30
-rw-r--r--crates/tor-checkable/Cargo.toml4
-rw-r--r--crates/tor-circmgr/Cargo.toml32
-rw-r--r--crates/tor-config/Cargo.toml4
-rw-r--r--crates/tor-congestion/Cargo.toml8
-rw-r--r--crates/tor-consdiff/Cargo.toml4
-rw-r--r--crates/tor-dirclient/Cargo.toml16
-rw-r--r--crates/tor-dirmgr/Cargo.toml26
-rw-r--r--crates/tor-error/Cargo.toml2
-rw-r--r--crates/tor-events/Cargo.toml2
-rw-r--r--crates/tor-guardmgr/Cargo.toml30
-rw-r--r--crates/tor-hsclient/Cargo.toml10
-rw-r--r--crates/tor-hscrypto/Cargo.toml2
-rw-r--r--crates/tor-hsservice/Cargo.toml10
-rw-r--r--crates/tor-linkspec/Cargo.toml10
-rw-r--r--crates/tor-llcrypto/Cargo.toml4
-rw-r--r--crates/tor-netdir/Cargo.toml14
-rw-r--r--crates/tor-netdoc/Cargo.toml10
-rw-r--r--crates/tor-persist/Cargo.toml4
-rw-r--r--crates/tor-proto/Cargo.toml22
-rw-r--r--crates/tor-protover/Cargo.toml2
-rw-r--r--crates/tor-ptmgr/Cargo.toml14
-rw-r--r--crates/tor-rtcompat/Cargo.toml2
-rw-r--r--crates/tor-rtmock/Cargo.toml6
-rw-r--r--crates/tor-socksproto/Cargo.toml6
-rw-r--r--crates/tor-units/Cargo.toml2
41 files changed, 198 insertions, 197 deletions
diff --git a/crates/arti-bench/Cargo.toml b/crates/arti-bench/Cargo.toml
index d47af750f..2bd3b9421 100644
--- a/crates/arti-bench/Cargo.toml
+++ b/crates/arti-bench/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "arti-bench"
-version = "0.8.0"
+version = "0.8.1"
edition = "2021"
rust-version = "1.60"
authors = ["The Tor Project, Inc.", "eta <[email protected]>"]
@@ -13,8 +13,8 @@ repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
anyhow = "1.0.23"
-arti = { path = "../arti", version = "1.1.0" }
-arti-client = { package = "arti-client", path = "../arti-client", version = "0.8.0" }
+arti = { path = "../arti", version = "1.1.1" }
+arti-client = { package = "arti-client", path = "../arti-client", version = "0.8.1" }
clap = "3.2.20"
float-ord = "0.3"
fs-mistrust = { path = "../fs-mistrust", version = "0.6.0" }
@@ -24,8 +24,8 @@ serde = { version = "1.0.103", features = ["derive"] }
serde_json = "1.0.50"
tokio = { version = "1.7", features = ["full"] }
tokio-socks = "0.5"
-tor-config = { path = "../tor-config", version = "0.7.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.0", features = ["tokio", "native-tls"] }
+tor-config = { path = "../tor-config", version = "0.7.1" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", features = ["tokio", "native-tls"] }
tracing = "0.1.18"
tracing-subscriber = { version = "0.3.0", features = ["env-filter"] }
[package.metadata.docs.rs]
diff --git a/crates/arti-client/Cargo.toml b/crates/arti-client/Cargo.toml
index 557dac71a..a1a49d2c5 100644
--- a/crates/arti-client/Cargo.toml
+++ b/crates/arti-client/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "arti-client"
-version = "0.8.0"
+version = "0.8.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -82,28 +82,28 @@ humantime-serde = "1.1.1"
libc = "0.2"
pin-project = "1"
postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] }
-safelog = { path = "../safelog", version = "0.2.0" }
+safelog = { path = "../safelog", version = "0.2.1" }
serde = { version = "1.0.103", features = ["derive"] }
thiserror = "1"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" }
-tor-cell = { path = "../tor-cell", version = "0.7.0" }
-tor-chanmgr = { path = "../tor-chanmgr", version = "0.8.0" }
+tor-cell = { path = "../tor-cell", version = "0.8.0" }
+tor-chanmgr = { path = "../tor-chanmgr", version = "0.8.1" }
tor-checkable = { path = "../tor-checkable", version = "0.4.0" }
-tor-circmgr = { path = "../tor-circmgr", version = "0.7.0" }
-tor-config = { path = "../tor-config", version = "0.7.0" }
-tor-dirmgr = { path = "../tor-dirmgr", version = "0.9.0", default-features = false, features = [
+tor-circmgr = { path = "../tor-circmgr", version = "0.7.1" }
+tor-config = { path = "../tor-config", version = "0.7.1" }
+tor-dirmgr = { path = "../tor-dirmgr", version = "0.9.1", default-features = false, features = [
"mmap",
] }
-tor-error = { path = "../tor-error", version = "0.4.0" }
-tor-guardmgr = { path = "../tor-guardmgr", version = "0.8.0" }
+tor-error = { path = "../tor-error", version = "0.4.1" }
+tor-guardmgr = { path = "../tor-guardmgr", version = "0.8.1" }
tor-hscrypto = { path = "../tor-hscrypto", version = "0.1.0", optional = true }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.7.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.6.0" }
-tor-persist = { path = "../tor-persist", version = "0.6.0" }
-tor-proto = { path = "../tor-proto", version = "0.8.0" }
-tor-ptmgr = { path = "../tor-ptmgr", version = "0.2.0", optional = true }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.1" }
+tor-netdir = { path = "../tor-netdir", version = "0.7.1" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.6.1" }
+tor-persist = { path = "../tor-persist", version = "0.6.1" }
+tor-proto = { path = "../tor-proto", version = "0.8.1" }
+tor-ptmgr = { path = "../tor-ptmgr", version = "0.2.1", optional = true }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1" }
tracing = "0.1.18"
[dev-dependencies]
@@ -120,7 +120,7 @@ tokio-crate = { package = "tokio", version = "1.7", features = [
"macros",
] }
tokio-util = { version = "0.7.0", features = ["compat"] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.0", features = ["tokio", "native-tls"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", features = ["tokio", "native-tls"] }
tracing-subscriber = "0.3.0"
[package.metadata.docs.rs]
diff --git a/crates/arti-config/Cargo.toml b/crates/arti-config/Cargo.toml
index e44a1e18f..ae4ee6d3e 100644
--- a/crates/arti-config/Cargo.toml
+++ b/crates/arti-config/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "arti-config"
-version = "0.5.0"
+version = "0.5.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -10,6 +10,7 @@ description = "Removed crate. (Tools for configuration management in Arti)"
keywords = ["tor", "arti"]
categories = ["config"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
+publish = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
diff --git a/crates/arti-hyper/Cargo.toml b/crates/arti-hyper/Cargo.toml
index b21df9a0a..006339531 100644
--- a/crates/arti-hyper/Cargo.toml
+++ b/crates/arti-hyper/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "arti-hyper"
-version = "0.8.0"
+version = "0.8.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -25,7 +25,7 @@ experimental-api = []
[dependencies]
anyhow = "1.0.23"
-arti-client = { path = "../arti-client", version = "0.8.0" }
+arti-client = { path = "../arti-client", version = "0.8.1" }
educe = "0.4.6"
hyper = { version = "0.14", features = ["http1", "client", "runtime"] }
pin-project = "1"
@@ -40,8 +40,8 @@ tokio = { package = "tokio", version = "1.7", features = [
"time",
"macros",
] }
-tor-error = { path = "../tor-error", version = "0.4.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.0", features = ["tokio"] }
+tor-error = { path = "../tor-error", version = "0.4.1" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", features = ["tokio"] }
[target.'cfg(target_vendor="apple")'.dev-dependencies]
tls-api-openssl = "0.9.0"
diff --git a/crates/arti-testing/Cargo.toml b/crates/arti-testing/Cargo.toml
index acd531b22..d6898b2f9 100644
--- a/crates/arti-testing/Cargo.toml
+++ b/crates/arti-testing/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "arti-testing"
-version = "0.8.0"
+version = "0.8.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -16,8 +16,8 @@ publish = false
[dependencies]
anyhow = "1.0.23"
-arti = { package = "arti", path = "../arti", version = "1.1.0" }
-arti-client = { package = "arti-client", path = "../arti-client", version = "0.8.0", features = [
+arti = { package = "arti", path = "../arti", version = "1.1.1" }
+arti-client = { package = "arti-client", path = "../arti-client", version = "0.8.1", features = [
"dirfilter",
] }
async-trait = "0.1.2"
@@ -30,16 +30,16 @@ rand = "0.8"
serde = { version = "1.0.103", features = ["derive"] }
tokio = { version = "1.7", features = ["signal", "macros"] }
tor-checkable = { path = "../tor-checkable", version = "0.4.0", features = ["experimental-api"] }
-tor-config = { path = "../tor-config", version = "0.7.0" }
-tor-dirmgr = { package = "tor-dirmgr", path = "../tor-dirmgr", version = "0.9.0", features = [
+tor-config = { path = "../tor-config", version = "0.7.1" }
+tor-dirmgr = { package = "tor-dirmgr", path = "../tor-dirmgr", version = "0.9.1", features = [
"dirfilter",
] }
-tor-error = { path = "../tor-error", version = "0.4.0" }
-tor-netdoc = { package = "tor-netdoc", path = "../tor-netdoc", version = "0.6.0", features = [
+tor-error = { path = "../tor-error", version = "0.4.1" }
+tor-netdoc = { package = "tor-netdoc", path = "../tor-netdoc", version = "0.6.1", features = [
"experimental-api",
"dangerous-expose-struct-fields",
] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1" }
tracing = "0.1.18"
tracing-appender = "0.2.0"
tracing-subscriber = { version = "0.3.0", features = ["env-filter"] }
diff --git a/crates/arti/Cargo.toml b/crates/arti/Cargo.toml
index ebd27e2fe..f1a538650 100644
--- a/crates/arti/Cargo.toml
+++ b/crates/arti/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "arti"
-version = "1.1.0"
+version = "1.1.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -68,7 +68,7 @@ experimental = ["arti-client/experimental", "experimental-api"]
[dependencies]
anyhow = "1.0.23"
-arti-client = { package = "arti-client", path = "../arti-client", version = "0.8.0", default-features = false }
+arti-client = { package = "arti-client", path = "../arti-client", version = "0.8.1", default-features = false }
async-ctrlc = { version = "1.2.0", optional = true }
cfg-if = "1.0.0"
clap = "3.2.20"
@@ -83,16 +83,16 @@ notify = { version = "5.0", default-features = false, features = ["macos_kqueue"
once_cell = { version = "1", optional = true }
paste = "1"
rlimit = "0.9.0"
-safelog = { path = "../safelog", version = "0.2.0" }
+safelog = { path = "../safelog", version = "0.2.1" }
secmem-proc = { version = "0.2.0", optional = true }
serde = { version = "1.0.103", features = ["derive"] }
signal-hook = { version = "0.3", optional = true }
signal-hook-async-std = { version = "0.2", optional = true }
tokio-crate = { package = "tokio", version = "1.7", optional = true, features = ["signal"] }
-tor-config = { path = "../tor-config", version = "0.7.0" }
-tor-error = { path = "../tor-error", version = "0.4.0", default-features = false }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.0", default-features = false }
-tor-socksproto = { path = "../tor-socksproto", version = "0.6.0" }
+tor-config = { path = "../tor-config", version = "0.7.1" }
+tor-error = { path = "../tor-error", version = "0.4.1", default-features = false }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", default-features = false }
+tor-socksproto = { path = "../tor-socksproto", version = "0.6.1" }
tracing = "0.1.18"
tracing-appender = "0.2.0"
tracing-journald = { version = "0.3.0", optional = true }
diff --git a/crates/caret/Cargo.toml b/crates/caret/Cargo.toml
index 04bc33e8f..a2c5634c2 100644
--- a/crates/caret/Cargo.toml
+++ b/crates/caret/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "caret"
-version = "0.3.0"
+version = "0.3.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
diff --git a/crates/fs-mistrust/Cargo.toml b/crates/fs-mistrust/Cargo.toml
index 93cf5ae24..10c325b13 100644
--- a/crates/fs-mistrust/Cargo.toml
+++ b/crates/fs-mistrust/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "fs-mistrust"
-version = "0.6.0"
+version = "0.6.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
diff --git a/crates/retry-error/Cargo.toml b/crates/retry-error/Cargo.toml
index 9f5e571f2..bb73da12a 100644
--- a/crates/retry-error/Cargo.toml
+++ b/crates/retry-error/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "retry-error"
-version = "0.3.0"
+version = "0.3.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
diff --git a/crates/safelog/Cargo.toml b/crates/safelog/Cargo.toml
index 6919509ba..1a4620244 100644
--- a/crates/safelog/Cargo.toml
+++ b/crates/safelog/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "safelog"
-version = "0.2.0"
+version = "0.2.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
diff --git a/crates/tor-basic-utils/Cargo.toml b/crates/tor-basic-utils/Cargo.toml
index 01a0c6e80..d0375f6da 100644
--- a/crates/tor-basic-utils/Cargo.toml
+++ b/crates/tor-basic-utils/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-basic-utils"
-version = "0.5.0"
+version = "0.5.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
diff --git a/crates/tor-bytes/Cargo.toml b/crates/tor-bytes/Cargo.toml
index 8c699f348..7f78d0dff 100644
--- a/crates/tor-bytes/Cargo.toml
+++ b/crates/tor-bytes/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-bytes"
-version = "0.6.0"
+version = "0.6.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -19,8 +19,8 @@ educe = "0.4.6"
generic-array = "0.14.3"
signature = "1"
thiserror = "1"
-tor-error = { path = "../tor-error", version = "0.4.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.0" }
+tor-error = { path = "../tor-error", version = "0.4.1" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.1" }
zeroize = "1"
[dev-dependencies]
diff --git a/crates/tor-cell/Cargo.toml b/crates/tor-cell/Cargo.toml
index 3096c0adf..be4e9aedb 100644
--- a/crates/tor-cell/Cargo.toml
+++ b/crates/tor-cell/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-cell"
-version = "0.7.0"
+version = "0.8.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -31,13 +31,13 @@ educe = "0.4.6"
rand = "0.8"
thiserror = "1"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" }
-tor-bytes = { path = "../tor-bytes", version = "0.6.0" }
-tor-cert = { path = "../tor-cert", version = "0.6.0" }
-tor-error = { path = "../tor-error", version = "0.4.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.6.1" }
+tor-cert = { path = "../tor-cert", version = "0.6.1" }
+tor-error = { path = "../tor-error", version = "0.4.1" }
tor-hscrypto = { path = "../tor-hscrypto", version = "0.1.0", optional = true }
tor-linkspec = { path = "../tor-linkspec", version = "0.6.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.0" }
-tor-units = { path = "../tor-units", version = "0.4.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.1" }
+tor-units = { path = "../tor-units", version = "0.4.1" }
[dev-dependencies]
hex = "0.4"
diff --git a/crates/tor-proto/semver.md b/crates/tor-cell/semver.md
index d937a48d6..d937a48d6 100644
--- a/crates/tor-proto/semver.md
+++ b/crates/tor-cell/semver.md
diff --git a/crates/tor-cert/Cargo.toml b/crates/tor-cert/Cargo.toml
index cfeb905be..d8041a304 100644
--- a/crates/tor-cert/Cargo.toml
+++ b/crates/tor-cert/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-cert"
-version = "0.6.0"
+version = "0.6.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -22,9 +22,9 @@ derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti", opt
digest = "0.10.0"
signature = "1"
thiserror = "1"
-tor-bytes = { path = "../tor-bytes", version = "0.6.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.6.1" }
tor-checkable = { path = "../tor-checkable", version = "0.4.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.1" }
[dev-dependencies]
base64ct = "1.5.1"
diff --git a/crates/tor-chanmgr/Cargo.toml b/crates/tor-chanmgr/Cargo.toml
index 3193bb64d..6e6e89fe6 100644
--- a/crates/tor-chanmgr/Cargo.toml
+++ b/crates/tor-chanmgr/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-chanmgr"
-version = "0.8.0"
+version = "0.8.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -28,22 +28,22 @@ educe = "0.4.6"
futures = "0.3.14"
postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] }
rand = "0.8"
-safelog = { path = "../safelog", version = "0.2.0" }
+safelog = { path = "../safelog", version = "0.2.1" }
serde = { version = "1.0.103", features = ["derive"] }
thiserror = "1"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" }
-tor-cell = { path = "../tor-cell", version = "0.7.0" }
-tor-config = { path = "../tor-config", version = "0.7.0" }
-tor-error = { path = "../tor-error", version = "0.4.0" }
+tor-cell = { path = "../tor-cell", version = "0.8.0" }
+tor-config = { path = "../tor-config", version = "0.7.1" }
+tor-error = { path = "../tor-error", version = "0.4.1" }
tor-linkspec = { path = "../tor-linkspec", version = "0.6.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.7.0" }
-tor-proto = { path = "../tor-proto", version = "0.8.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.0" }
-tor-socksproto = { path = "../tor-socksproto", version = "0.6.0", default-features = false, features = [
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.1" }
+tor-netdir = { path = "../tor-netdir", version = "0.7.1" }
+tor-proto = { path = "../tor-proto", version = "0.8.1" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1" }
+tor-socksproto = { path = "../tor-socksproto", version = "0.6.1", default-features = false, features = [
"client-handshake",
] }
-tor-units = { path = "../tor-units", version = "0.4.0" }
+tor-units = { path = "../tor-units", version = "0.4.1" }
tracing = "0.1.18"
void = "1"
@@ -52,10 +52,10 @@ float_eq = "1.0.0"
futures-await-test = "0.3.0"
hex-literal = "0.3"
itertools = "0.10.1"
-tor-cell = { path = "../tor-cell", version = "0.7.0", features = ["testing"] }
-tor-netdir = { path = "../tor-netdir", version = "0.7.0", features = ["testing"] }
-tor-proto = { path = "../tor-proto", version = "0.8.0", features = ["testing"] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.0", features = ["tokio", "native-tls"] }
+tor-cell = { path = "../tor-cell", version = "0.8.0", features = ["testing"] }
+tor-netdir = { path = "../tor-netdir", version = "0.7.1", features = ["testing"] }
+tor-proto = { path = "../tor-proto", version = "0.8.1", features = ["testing"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", features = ["tokio", "native-tls"] }
tor-rtmock = { path = "../tor-rtmock", version = "0.7.0" }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-checkable/Cargo.toml b/crates/tor-checkable/Cargo.toml
index 636886934..5089ed313 100644
--- a/crates/tor-checkable/Cargo.toml
+++ b/crates/tor-checkable/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-checkable"
-version = "0.4.0"
+version = "0.4.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -19,7 +19,7 @@ experimental-api = []
humantime = "2"
signature = "1"
thiserror = "1"
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.1" }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
diff --git a/crates/tor-circmgr/Cargo.toml b/crates/tor-circmgr/Cargo.toml
index 801f1cac5..a61779be7 100644
--- a/crates/tor-circmgr/Cargo.toml
+++ b/crates/tor-circmgr/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-circmgr"
-version = "0.7.0"
+version = "0.7.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -41,32 +41,32 @@ once_cell = "1"
pin-project = "1"
rand = "0.8"
retry-error = { path = "../retry-error", version = "0.3.0" }
-safelog = { path = "../safelog", version = "0.2.0" }
+safelog = { path = "../safelog", version = "0.2.1" }
serde = { version = "1.0.103", features = ["derive"] }
static_assertions = "1"
thiserror = "1"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" }
-tor-chanmgr = { path = "../tor-chanmgr", version = "0.8.0" }
-tor-config = { path = "../tor-config", version = "0.7.0" }
-tor-error = { path = "../tor-error", version = "0.4.0" }
-tor-guardmgr = { path = "../tor-guardmgr", version = "0.8.0" }
+tor-chanmgr = { path = "../tor-chanmgr", version = "0.8.1" }
+tor-config = { path = "../tor-config", version = "0.7.1" }
+tor-error = { path = "../tor-error", version = "0.4.1" }
+tor-guardmgr = { path = "../tor-guardmgr", version = "0.8.1" }
tor-hscrypto = { path = "../tor-hscrypto", version = "0.1.0", optional = true }
tor-linkspec = { path = "../tor-linkspec", version = "0.6.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.7.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.6.0" }
-tor-persist = { path = "../tor-persist", version = "0.6.0" }
-tor-proto = { path = "../tor-proto", version = "0.8.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.0" }
+tor-netdir = { path = "../tor-netdir", version = "0.7.1" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.6.1" }
+tor-persist = { path = "../tor-persist", version = "0.6.1" }
+tor-proto = { path = "../tor-proto", version = "0.8.1" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1" }
tracing = "0.1.18"
weak-table = "0.3.0"
[dev-dependencies]
futures-await-test = "0.3.0"
-tor-guardmgr = { path = "../tor-guardmgr", version = "0.8.0", features = ["testing"] }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.7.0", features = ["testing"] }
-tor-persist = { path = "../tor-persist", version = "0.6.0", features = ["testing"] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.0", features = ["tokio", "native-tls"] }
+tor-guardmgr = { path = "../tor-guardmgr", version = "0.8.1", features = ["testing"] }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.1" }
+tor-netdir = { path = "../tor-netdir", version = "0.7.1", features = ["testing"] }
+tor-persist = { path = "../tor-persist", version = "0.6.1", features = ["testing"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", features = ["tokio", "native-tls"] }
tor-rtmock = { path = "../tor-rtmock", version = "0.7.0" }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-config/Cargo.toml b/crates/tor-config/Cargo.toml
index 256859dbb..5184d8049 100644
--- a/crates/tor-config/Cargo.toml
+++ b/crates/tor-config/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-config"
-version = "0.7.0"
+version = "0.7.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -33,7 +33,7 @@ strum = { version = "0.24", features = ["derive"] }
thiserror = "1"
toml = "0.6.0"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" }
-tor-error = { path = "../tor-error", version = "0.4.0" }
+tor-error = { path = "../tor-error", version = "0.4.1" }
tracing = "0.1.18"
[dev-dependencies]
diff --git a/crates/tor-congestion/Cargo.toml b/crates/tor-congestion/Cargo.toml
index 60be3ed0c..26517b36a 100644
--- a/crates/tor-congestion/Cargo.toml
+++ b/crates/tor-congestion/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-congestion"
-version = "0.4.0"
+version = "0.4.1"
edition = "2021"
authors = ["The Tor Project, Inc.", "eta <[email protected]>"]
rust-version = "1.60"
@@ -13,9 +13,9 @@ repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
thiserror = "1"
-tor-error = { path = "../tor-error", version = "0.4.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.7.0" }
-tor-units = { path = "../tor-units", version = "0.4.0" }
+tor-error = { path = "../tor-error", version = "0.4.1" }
+tor-netdir = { path = "../tor-netdir", version = "0.7.1" }
+tor-units = { path = "../tor-units", version = "0.4.1" }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
diff --git a/crates/tor-consdiff/Cargo.toml b/crates/tor-consdiff/Cargo.toml
index 30c42a79e..92cd92181 100644
--- a/crates/tor-consdiff/Cargo.toml
+++ b/crates/tor-consdiff/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-consdiff"
-version = "0.4.0"
+version = "0.4.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -19,7 +19,7 @@ slow-diff-apply = []
digest = "0.10.0"
hex = "0.4"
thiserror = "1"
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.1" }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
diff --git a/crates/tor-dirclient/Cargo.toml b/crates/tor-dirclient/Cargo.toml
index f415d45dc..dc548ca9d 100644
--- a/crates/tor-dirclient/Cargo.toml
+++ b/crates/tor-dirclient/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-dirclient"
-version = "0.6.0"
+version = "0.6.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -30,18 +30,18 @@ httpdate = "1.0"
itertools = "0.10.1"
memchr = "2"
thiserror = "1"
-tor-circmgr = { path = "../tor-circmgr", version = "0.7.0" }
-tor-error = { path = "../tor-error", version = "0.4.0" }
+tor-circmgr = { path = "../tor-circmgr", version = "0.7.1" }
+tor-error = { path = "../tor-error", version = "0.4.1" }
tor-linkspec = { path = "../tor-linkspec", version = "0.6.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.6.0" }
-tor-proto = { path = "../tor-proto", version = "0.8.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.1" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.6.1" }
+tor-proto = { path = "../tor-proto", version = "0.8.1" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1" }
tracing = "0.1.18"
[dev-dependencies]
futures-await-test = "0.3.0"
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.0", features = ["tokio", "native-tls"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", features = ["tokio", "native-tls"] }
tor-rtmock = { path = "../tor-rtmock", version = "0.7.0" }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-dirmgr/Cargo.toml b/crates/tor-dirmgr/Cargo.toml
index c5738a93b..f8351699d 100644
--- a/crates/tor-dirmgr/Cargo.toml
+++ b/crates/tor-dirmgr/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-dirmgr"
-version = "0.9.0"
+version = "0.9.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -52,7 +52,7 @@ postage = { version = "0.5.0", default-features = false, features = ["futures-tr
rand = "0.8"
retry-error = { path = "../retry-error", version = "0.3.0" }
rusqlite = { version = "0.28.0", features = ["time"] }
-safelog = { path = "../safelog", version = "0.2.0" }
+safelog = { path = "../safelog", version = "0.2.1" }
scopeguard = "1"
serde = { version = "1.0.103", features = ["derive"] }
signature = "1"
@@ -61,17 +61,17 @@ thiserror = "1"
time = { version = "0.3", features = ["formatting", "parsing"] }
tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" }
tor-checkable = { path = "../tor-checkable", version = "0.4.0" }
-tor-circmgr = { path = "../tor-circmgr", version = "0.7.0" }
-tor-config = { path = "../tor-config", version = "0.7.0" }
+tor-circmgr = { path = "../tor-circmgr", version = "0.7.1" }
+tor-config = { path = "../tor-config", version = "0.7.1" }
tor-consdiff = { path = "../tor-consdiff", version = "0.4.0" }
-tor-dirclient = { path = "../tor-dirclient", version = "0.6.0", default-features = false }
-tor-error = { path = "../tor-error", version = "0.4.0" }
-tor-guardmgr = { path = "../tor-guardmgr", version = "0.8.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.7.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.6.0" }
-tor-proto = { path = "../tor-proto", version = "0.8.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.0" }
+tor-dirclient = { path = "../tor-dirclient", version = "0.6.1", default-features = false }
+tor-error = { path = "../tor-error", version = "0.4.1" }
+tor-guardmgr = { path = "../tor-guardmgr", version = "0.8.1" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.1" }
+tor-netdir = { path = "../tor-netdir", version = "0.7.1" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.6.1" }
+tor-proto = { path = "../tor-proto", version = "0.8.1" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1" }
tracing = "0.1.18"
[dev-dependencies]
@@ -81,7 +81,7 @@ hex-literal = "0.3"
tempfile = "3"
tokio = { version = "1.7", features = ["full"] }
tor-linkspec = { path = "../tor-linkspec", version = "0.6.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.0", features = ["tokio", "native-tls"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", features = ["tokio", "native-tls"] }
tor-rtmock = { path = "../tor-rtmock", version = "0.7.0" }
tracing-test = "0.2"
[package.metadata.docs.rs]
diff --git a/crates/tor-error/Cargo.toml b/crates/tor-error/Cargo.toml
index dd4b35383..66c2c083d 100644
--- a/crates/tor-error/Cargo.toml
+++ b/crates/tor-error/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-error"
-version = "0.4.0"
+version = "0.4.1"
authors = ["Ian Jackson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
diff --git a/crates/tor-events/Cargo.toml b/crates/tor-events/Cargo.toml
index 4f9bb6397..9a0343f48 100644
--- a/crates/tor-events/Cargo.toml
+++ b/crates/tor-events/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-events"
-version = "0.4.0"
+version = "0.4.1"
edition = "2021"
rust-version = "1.60"
authors = ["The Tor Project, Inc.", "eta <[email protected]>"]
diff --git a/crates/tor-guardmgr/Cargo.toml b/crates/tor-guardmgr/Cargo.toml
index 64e08fe24..e1ea9a426 100644
--- a/crates/tor-guardmgr/Cargo.toml
+++ b/crates/tor-guardmgr/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-guardmgr"
-version = "0.8.0"
+version = "0.8.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -42,32 +42,32 @@ pin-project = "1"
postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] }
rand = "0.8"
retain_mut = "0.1.3"
-safelog = { path = "../safelog", version = "0.2.0" }
+safelog = { path = "../safelog", version = "0.2.1" }
serde = { version = "1.0.103", features = ["derive"] }
strum = { version = "0.24", features = ["derive"] }
thiserror = "1"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" }
-tor-config = { path = "../tor-config", version = "0.7.0" }
-tor-error = { path = "../tor-error", version = "0.4.0" }
+tor-config = { path = "../tor-config", version = "0.7.1" }
+tor-error = { path = "../tor-error", version = "0.4.1" }
tor-linkspec = { path = "../tor-linkspec", version = "0.6.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.7.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.6.0" } # for address pattern
-tor-persist = { path = "../tor-persist", version = "0.6.0" }
-tor-proto = { path = "../tor-proto", version = "0.8.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.1" }
+tor-netdir = { path = "../tor-netdir", version = "0.7.1" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.6.1" } # for address pattern
+tor-persist = { path = "../tor-persist", version = "0.6.1" }
+tor-proto = { path = "../tor-proto", version = "0.8.1" }
tor-protover = { path = "../tor-protover", version = "0.4.0", optional = true }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.0" }
-tor-units = { path = "../tor-units", version = "0.4.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1" }
+tor-units = { path = "../tor-units", version = "0.4.1" }
tracing = "0.1.18"
[dev-dependencies]
float_eq = "1.0.0"
serde_json = "1.0.50"
toml = "0.6.0"
-tor-netdir = { path = "../tor-netdir", version = "0.7.0", features = ["testing"] }
-tor-netdoc = { path = "../tor-netdoc", version = "0.6.0" }
-tor-persist = { path = "../tor-persist", version = "0.6.0", features = ["testing"] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.0", features = ["tokio", "native-tls"] }
+tor-netdir = { path = "../tor-netdir", version = "0.7.1", features = ["testing"] }
+tor-netdoc = { path = "../tor-netdoc", version = "0.6.1" }
+tor-persist = { path = "../tor-persist", version = "0.6.1", features = ["testing"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", features = ["tokio", "native-tls"] }
[package.metadata.docs.rs]
all-features = true
diff --git a/crates/tor-hsclient/Cargo.toml b/crates/tor-hsclient/Cargo.toml
index 34bb88175..d8b66a72f 100644
--- a/crates/tor-hsclient/Cargo.toml
+++ b/crates/tor-hsclient/Cargo.toml
@@ -20,11 +20,11 @@ default = []
async-trait = "0.1.2"
rand_core = "0.6.2"
thiserror = "1"
-tor-circmgr = { version = "0.7.0", path = "../tor-circmgr", features = ["onion-client"] }
+tor-circmgr = { version = "0.7.1", path = "../tor-circmgr", features = ["onion-client"] }
tor-hscrypto = { version = "0.1.0", path = "../tor-hscrypto" }
-tor-llcrypto = { version = "0.4.0", path = "../tor-llcrypto" }
-tor-netdir = { version = "0.7.0", path = "../tor-netdir" }
-tor-proto = { version = "0.8.0", path = "../tor-proto" }
-tor-rtcompat = { version = "0.8.0", path = "../tor-rtcompat" }
+tor-llcrypto = { version = "0.4.1", path = "../tor-llcrypto" }
+tor-netdir = { version = "0.7.1", path = "../tor-netdir" }
+tor-proto = { version = "0.8.1", path = "../tor-proto" }
+tor-rtcompat = { version = "0.8.1", path = "../tor-rtcompat" }
[dev-dependencies]
diff --git a/crates/tor-hscrypto/Cargo.toml b/crates/tor-hscrypto/Cargo.toml
index 9cab195e5..3b40134e9 100644
--- a/crates/tor-hscrypto/Cargo.toml
+++ b/crates/tor-hscrypto/Cargo.toml
@@ -22,7 +22,7 @@ rand_core = "0.6.2"
serde = { version = "1.0.103", features = ["derive"] }
signature = "1"
thiserror = "1"
-tor-llcrypto = { version = "0.4.0", path = "../tor-llcrypto", features = [
+tor-llcrypto = { version = "0.4.1", path = "../tor-llcrypto", features = [
"hsv3-client",
"hsv3-service",
] }
diff --git a/crates/tor-hsservice/Cargo.toml b/crates/tor-hsservice/Cargo.toml
index 9a02c5905..9356b354b 100644
--- a/crates/tor-hsservice/Cargo.toml
+++ b/crates/tor-hsservice/Cargo.toml
@@ -20,11 +20,11 @@ default = []
async-trait = "0.1.2"
rand_core = "0.6.2"
thiserror = "1"
-tor-circmgr = { version = "0.7.0", path = "../tor-circmgr", features = ["onion-client"] }
+tor-circmgr = { version = "0.7.1", path = "../tor-circmgr", features = ["onion-client"] }
tor-hscrypto = { version = "0.1.0", path = "../tor-hscrypto" }
-tor-llcrypto = { version = "0.4.0", path = "../tor-llcrypto" }
-tor-netdir = { version = "0.7.0", path = "../tor-netdir" }
-tor-proto = { version = "0.8.0", path = "../tor-proto" }
-tor-rtcompat = { version = "0.8.0", path = "../tor-rtcompat" }
+tor-llcrypto = { version = "0.4.1", path = "../tor-llcrypto" }
+tor-netdir = { version = "0.7.1", path = "../tor-netdir" }
+tor-proto = { version = "0.8.1", path = "../tor-proto" }
+tor-rtcompat = { version = "0.8.1", path = "../tor-rtcompat" }
[dev-dependencies]
diff --git a/crates/tor-linkspec/Cargo.toml b/crates/tor-linkspec/Cargo.toml
index 98ca45c50..dc631ebd7 100644
--- a/crates/tor-linkspec/Cargo.toml
+++ b/crates/tor-linkspec/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-linkspec"
-version = "0.6.0"
+version = "0.6.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -25,15 +25,15 @@ derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = "0.99.3"
educe = "0.4.6"
hex = "0.4"
-safelog = { path = "../safelog", version = "0.2.0" }
+safelog = { path = "../safelog", version = "0.2.1" }
serde = { version = "1.0.103", features = ["derive"] }
serde_with = "2.0.1"
strum = { version = "0.24", features = ["derive"] }
thiserror = "1"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" }
-tor-bytes = { path = "../tor-bytes", version = "0.6.0" }
-tor-config = { path = "../tor-config", version = "0.7.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.6.1" }
+tor-config = { path = "../tor-config", version = "0.7.1" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.1" }
tor-protover = { path = "../tor-protover", version = "0.4.0" }
[dev-dependencies]
diff --git a/crates/tor-llcrypto/Cargo.toml b/crates/tor-llcrypto/Cargo.toml
index 897221c0e..a9572fd6e 100644
--- a/crates/tor-llcrypto/Cargo.toml
+++ b/crates/tor-llcrypto/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-llcrypto"
-version = "0.4.0"
+version = "0.4.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -38,7 +38,7 @@ old_rand_core = { package = "rand_core", version = "0.5.1" }
openssl = { version = "0.10.30", optional = true }
rand_core = "0.6.2"
rsa = "0.8.0"
-safelog = { version = "0.2.0", path = "../safelog" }
+safelog = { version = "0.2.1", path = "../safelog" }
serde = "1.0.103"
sha1 = "0.10.0"
sha2 = "0.10.0"
diff --git a/crates/tor-netdir/Cargo.toml b/crates/tor-netdir/Cargo.toml
index 4aedd5796..0ccc687b3 100644
--- a/crates/tor-netdir/Cargo.toml
+++ b/crates/tor-netdir/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-netdir"
-version = "0.7.0"
+version = "0.7.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -46,14 +46,14 @@ strum = { version = "0.24", features = ["derive"] }
thiserror = "1"
time = { version = "0.3.17", features = ["macros"], optional = true }
tor-checkable = { path = "../tor-checkable", version = "0.4.0" }
-tor-config = { path = "../tor-config", version = "0.7.0" }
-tor-error = { path = "../tor-error", version = "0.4.0" }
+tor-config = { path = "../tor-config", version = "0.7.1" }
+tor-error = { path = "../tor-error", version = "0.4.1" }
tor-hscrypto = { path = "../tor-hscrypto", version = "0.1.0", optional = true }
tor-linkspec = { path = "../tor-linkspec", version = "0.6.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.6.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.1" }
+tor-netdoc = { path = "../tor-netdoc", version = "0.6.1" }
tor-protover = { path = "../tor-protover", version = "0.4.0" }
-tor-units = { path = "../tor-units", version = "0.4.0" }
+tor-units = { path = "../tor-units", version = "0.4.1" }
tracing = "0.1.18"
[dev-dependencies]
@@ -62,7 +62,7 @@ hex = "0.4"
hex-literal = "0.3"
rand_chacha = "0.3"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" }
-tor-netdoc = { path = "../tor-netdoc", version = "0.6.0", features = ["build_docs"] }
+tor-netdoc = { path = "../tor-netdoc", version = "0.6.1", features = ["build_docs"] }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
diff --git a/crates/tor-netdoc/Cargo.toml b/crates/tor-netdoc/Cargo.toml
index d2d57491d..fbfe6136a 100644
--- a/crates/tor-netdoc/Cargo.toml
+++ b/crates/tor-netdoc/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-netdoc"
-version = "0.6.0"
+version = "0.6.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -68,13 +68,13 @@ signature = "1"
thiserror = "1"
time = { version = "0.3", features = ["std", "parsing", "macros"] }
tinystr = "0.7.0"
-tor-bytes = { path = "../tor-bytes", version = "0.6.0" }
-tor-cert = { path = "../tor-cert", version = "0.6.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.6.1" }
+tor-cert = { path = "../tor-cert", version = "0.6.1" }
tor-checkable = { path = "../tor-checkable", version = "0.4.0" }
-tor-error = { path = "../tor-error", version = "0.4.0" }
+tor-error = { path = "../tor-error", version = "0.4.1" }
tor-hscrypto = { path = "../tor-hscrypto", version = "0.1.0", optional = true }
tor-linkspec = { path = "../tor-linkspec", version = "0.6.0", optional = true }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.1" }
tor-protover = { path = "../tor-protover", version = "0.4.0" }
visibility = { version = "0.0.1", optional = true }
visible = { version = "0.0.1", optional = true }
diff --git a/crates/tor-persist/Cargo.toml b/crates/tor-persist/Cargo.toml
index 9f04fbc22..71d7390af 100644
--- a/crates/tor-persist/Cargo.toml
+++ b/crates/tor-persist/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-persist"
-version = "0.6.0"
+version = "0.6.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -23,7 +23,7 @@ sanitize-filename = "0.4.0"
serde = { version = "1.0.103", features = ["derive"] }
serde_json = "1.0.50"
thiserror = "1"
-tor-error = { path = "../tor-error", version = "0.4.0" }
+tor-error = { path = "../tor-error", version = "0.4.1" }
tracing = "0.1.18"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
diff --git a/crates/tor-proto/Cargo.toml b/crates/tor-proto/Cargo.toml
index f363f2670..573903c3c 100644
--- a/crates/tor-proto/Cargo.toml
+++ b/crates/tor-proto/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-proto"
-version = "0.8.0"
+version = "0.8.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -42,24 +42,24 @@ hmac = "0.12.0"
pin-project = "1"
rand = "0.8"
rand_core = "0.6.2"
-safelog = { path = "../safelog", version = "0.2.0" }
+safelog = { path = "../safelog", version = "0.2.1" }
subtle = "2"
thiserror = "1"
tokio-crate = { package = "tokio", version = "1.7", optional = true }
tokio-util = { version = "0.7.0", features = ["compat"], optional = true }
tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" }
-tor-bytes = { path = "../tor-bytes", version = "0.6.0" }
-tor-cell = { path = "../tor-cell", version = "0.7.0" }
-tor-cert = { path = "../tor-cert", version = "0.6.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.6.1" }
+tor-cell = { path = "../tor-cell", version = "0.8.0" }
+tor-cert = { path = "../tor-cert", version = "0.6.1" }
tor-checkable = { path = "../tor-checkable", version = "0.4.0" }
-tor-config = { path = "../tor-config", version = "0.7.0" }
-tor-error = { path = "../tor-error", version = "0.4.0" }
+tor-config = { path = "../tor-config", version = "0.7.1" }
+tor-error = { path = "../tor-error", version = "0.4.1" }
tor-linkspec = { path = "../tor-linkspec", version = "0.6.0" }
-tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.0" }
+tor-llcrypto = { path = "../tor-llcrypto", version = "0.4.1" }
tor-protover = { path = "../tor-protover", version = "0.4.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.0" }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1" }
tor-rtmock = { path = "../tor-rtmock", version = "0.7.0" }
-tor-units = { path = "../tor-units", version = "0.4.0" }
+tor-units = { path = "../tor-units", version = "0.4.1" }
tracing = "0.1.18"
typenum = "1.12"
zeroize = "1"
@@ -72,7 +72,7 @@ itertools = "0.10.1"
regex = { version = "1", default-features = false, features = ["std"] }
statrs = "0.16.0"
tokio-crate = { package = "tokio", version = "1.7", features = ["full"] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.0", features = ["tokio", "native-tls"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", features = ["tokio", "native-tls"] }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
diff --git a/crates/tor-protover/Cargo.toml b/crates/tor-protover/Cargo.toml
index ea938ec91..d0370f050 100644
--- a/crates/tor-protover/Cargo.toml
+++ b/crates/tor-protover/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-protover"
-version = "0.4.0"
+version = "0.4.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
diff --git a/crates/tor-ptmgr/Cargo.toml b/crates/tor-ptmgr/Cargo.toml
index 4a942d631..f42283c70 100644
--- a/crates/tor-ptmgr/Cargo.toml
+++ b/crates/tor-ptmgr/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-ptmgr"
-version = "0.2.0"
+version = "0.2.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -26,12 +26,12 @@ fs-mistrust = { version = "0.6.0", path = "../fs-mistrust" }
futures = "0.3.14"
serde = { version = "1.0.103", features = ["derive"] }
thiserror = "1"
-tor-chanmgr = { version = "0.8.0", path = "../tor-chanmgr", features = ["pt-client"] }
-tor-config = { version = "0.7.0", path = "../tor-config" }
-tor-error = { version = "0.4.0", path = "../tor-error" }
+tor-chanmgr = { version = "0.8.1", path = "../tor-chanmgr", features = ["pt-client"] }
+tor-config = { version = "0.7.1", path = "../tor-config" }
+tor-error = { version = "0.4.1", path = "../tor-error" }
tor-linkspec = { version = "0.6.0", path = "../tor-linkspec", features = ["pt-client"] }
-tor-rtcompat = { version = "0.8.0", path = "../tor-rtcompat" }
-tor-socksproto = { version = "0.6.0", path = "../tor-socksproto" }
+tor-rtcompat = { version = "0.8.1", path = "../tor-rtcompat" }
+tor-socksproto = { version = "0.6.1", path = "../tor-socksproto" }
tracing = "0.1.18"
visibility = { version = "0.0.1", optional = true }
@@ -45,7 +45,7 @@ tokio = { version = "1.7", features = [
"time",
"macros",
] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.0", features = ["tokio", "native-tls"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", features = ["tokio", "native-tls"] }
tracing-subscriber = "0.3.0"
[[example]]
diff --git a/crates/tor-rtcompat/Cargo.toml b/crates/tor-rtcompat/Cargo.toml
index ac1f88371..9ab8192c0 100644
--- a/crates/tor-rtcompat/Cargo.toml
+++ b/crates/tor-rtcompat/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-rtcompat"
-version = "0.8.0"
+version = "0.8.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
diff --git a/crates/tor-rtmock/Cargo.toml b/crates/tor-rtmock/Cargo.toml
index a2808b355..c8f492b78 100644
--- a/crates/tor-rtmock/Cargo.toml
+++ b/crates/tor-rtmock/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-rtmock"
-version = "0.7.0"
+version = "0.7.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -17,14 +17,14 @@ futures = "0.3.14"
humantime = "2"
pin-project = "1"
thiserror = "1"
-tor-rtcompat = { version = "0.8.0", path = "../tor-rtcompat" }
+tor-rtcompat = { version = "0.8.1", path = "../tor-rtcompat" }
tracing = "0.1.18"
[dev-dependencies]
futures-await-test = "0.3.0"
rand = "0.8"
tor-basic-utils = { path = "../tor-basic-utils", version = "0.5.0" }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.0", features = ["tokio", "native-tls"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.8.1", features = ["tokio", "native-tls"] }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
diff --git a/crates/tor-socksproto/Cargo.toml b/crates/tor-socksproto/Cargo.toml
index f37ba08f5..3e78a7a39 100644
--- a/crates/tor-socksproto/Cargo.toml
+++ b/crates/tor-socksproto/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-socksproto"
-version = "0.6.0"
+version = "0.6.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.60"
@@ -21,8 +21,8 @@ arbitrary = { version = "1.0.1", optional = true, features = ["derive"] }
caret = { path = "../caret", version = "0.3.0" }
subtle = "2"
thiserror = "1"
-tor-bytes = { path = "../tor-bytes", version = "0.6.0" }
-tor-error = { path = "../tor-error", version = "0.4.0" }
+tor-bytes = { path = "../tor-bytes", version = "0.6.1" }
+tor-error = { path = "../tor-error", version = "0.4.1" }
[dev-dependencies]
hex-literal = "0.3"
diff --git a/crates/tor-units/Cargo.toml b/crates/tor-units/Cargo.toml
index 09f3bb9b5..7f731a545 100644
--- a/crates/tor-units/Cargo.toml
+++ b/crates/tor-units/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "tor-units"
-version = "0.4.0"
+version = "0.4.1"
authors = ["Dennis Jackson <[email protected]>"]
edition = "2021"
rust-version = "1.60"