Commit 0cfbb6fa authored by Nick Mathewson's avatar Nick Mathewson 🥔
Browse files

Patchlevel bumps to crates whose dependencies just changed.

(The only change in these crates is that their dependencies changed.)
parent 1c3c06d6
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -323,7 +323,7 @@ version = "0.6.4"

[[package]]
name = "arti-hyper"
version = "0.10.2"
version = "0.10.3"
dependencies = [
 "anyhow",
 "arti-client",
@@ -342,7 +342,7 @@ dependencies = [

[[package]]
name = "arti-rpcserver"
version = "0.2.2"
version = "0.2.3"
dependencies = [
 "arti-client",
 "asynchronous-codec",
@@ -374,7 +374,7 @@ dependencies = [

[[package]]
name = "arti-testing"
version = "0.8.8"
version = "0.8.9"
dependencies = [
 "anyhow",
 "arti",
@@ -4564,7 +4564,7 @@ dependencies = [

[[package]]
name = "tor-cert"
version = "0.7.4"
version = "0.7.5"
dependencies = [
 "base64ct",
 "caret",
@@ -4616,7 +4616,7 @@ dependencies = [

[[package]]
name = "tor-checkable"
version = "0.5.4"
version = "0.5.5"
dependencies = [
 "humantime 2.1.0",
 "signature 1.6.4",
@@ -4714,7 +4714,7 @@ dependencies = [

[[package]]
name = "tor-consdiff"
version = "0.5.5"
version = "0.5.6"
dependencies = [
 "digest 0.10.7",
 "hex",
@@ -4959,7 +4959,7 @@ dependencies = [

[[package]]
name = "tor-hspow"
version = "0.1.1"
version = "0.1.2"
dependencies = [
 "arrayvec",
 "blake2",
@@ -5379,7 +5379,7 @@ dependencies = [

[[package]]
name = "tor-socksproto"
version = "0.7.4"
version = "0.7.5"
dependencies = [
 "arbitrary",
 "caret",
+1 −1
Original line number Diff line number Diff line
@@ -128,7 +128,7 @@ tor-async-utils = { path = "../tor-async-utils", version = "0.1.4" }
tor-basic-utils = { path = "../tor-basic-utils", version = "0.7.3" }
tor-cell = { path = "../tor-cell", version = "0.12.3" }
tor-chanmgr = { path = "../tor-chanmgr", version = "0.10.1" }
tor-checkable = { path = "../tor-checkable", version = "0.5.3" }
tor-checkable = { path = "../tor-checkable", version = "0.5.5" }
tor-circmgr = { path = "../tor-circmgr", version = "0.11.0" }
tor-config = { path = "../tor-config", version = "0.9.5" }
tor-dirmgr = { path = "../tor-dirmgr", version = "0.11.2", default-features = false, features = ["mmap"] }
+1 −1
Original line number Diff line number Diff line
[package]
name = "arti-hyper"
version = "0.10.2"
version = "0.10.3"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2021"
rust-version = "1.65"
+1 −1
Original line number Diff line number Diff line
[package]
name = "arti-rpcserver"
version = "0.2.2"
version = "0.2.3"
edition = "2021"
rust-version = "1.60"
authors = ["The Tor Project, Inc.", "eta <eta@torproject.org>"]
+2 −2
Original line number Diff line number Diff line
[package]
name = "arti-testing"
version = "0.8.8"
version = "0.8.9"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2021"
rust-version = "1.65"
@@ -38,7 +38,7 @@ rand = "0.8"
serde = { version = "1.0.103", features = ["derive"] }
tokio = { version = "1.7", features = ["signal", "macros"] }
tor-basic-utils = { path = "../tor-basic-utils", version = "0.7.3" }
tor-checkable = { path = "../tor-checkable", version = "0.5.3", features = ["experimental-api"] }
tor-checkable = { path = "../tor-checkable", version = "0.5.5", features = ["experimental-api"] }
tor-config = { path = "../tor-config", version = "0.9.5" }
tor-dirmgr = { package = "tor-dirmgr", path = "../tor-dirmgr", version = "0.11.2", features = ["dirfilter"] }
tor-error = { path = "../tor-error", version = "0.5.4" }
Loading