Commit 01d99373 authored by Nick Mathewson's avatar Nick Mathewson 🤹
Browse files

Bump the patch version of every crate that changed since 0.0.3

parent d3039d80
Loading
Loading
Loading
Loading
+14 −14
Original line number Diff line number Diff line
@@ -61,7 +61,7 @@ checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"

[[package]]
name = "arti"
version = "0.0.3"
version = "0.0.4"
dependencies = [
 "anyhow",
 "arti-client",
@@ -87,7 +87,7 @@ dependencies = [

[[package]]
name = "arti-bench"
version = "0.0.3"
version = "0.0.4"
dependencies = [
 "anyhow",
 "arti-client",
@@ -107,7 +107,7 @@ dependencies = [

[[package]]
name = "arti-client"
version = "0.0.3"
version = "0.0.4"
dependencies = [
 "anyhow",
 "derive_builder",
@@ -135,7 +135,7 @@ dependencies = [

[[package]]
name = "arti-config"
version = "0.0.3"
version = "0.0.4"
dependencies = [
 "arti-client",
 "config",
@@ -2696,7 +2696,7 @@ dependencies = [

[[package]]
name = "tor-chanmgr"
version = "0.0.3"
version = "0.0.4"
dependencies = [
 "async-trait",
 "derive_more",
@@ -2725,7 +2725,7 @@ dependencies = [

[[package]]
name = "tor-circmgr"
version = "0.0.3"
version = "0.0.4"
dependencies = [
 "async-trait",
 "bounded-vec-deque",
@@ -2757,7 +2757,7 @@ dependencies = [

[[package]]
name = "tor-config"
version = "0.0.3"
version = "0.0.4"
dependencies = [
 "derive_builder",
 "directories",
@@ -2782,7 +2782,7 @@ dependencies = [

[[package]]
name = "tor-dirclient"
version = "0.0.3"
version = "0.0.4"
dependencies = [
 "async-compression",
 "base64",
@@ -2805,7 +2805,7 @@ dependencies = [

[[package]]
name = "tor-dirmgr"
version = "0.0.3"
version = "0.0.4"
dependencies = [
 "async-trait",
 "base64",
@@ -2858,7 +2858,7 @@ dependencies = [

[[package]]
name = "tor-guardmgr"
version = "0.0.3"
version = "0.0.4"
dependencies = [
 "derive_builder",
 "futures",
@@ -2950,7 +2950,7 @@ dependencies = [

[[package]]
name = "tor-netdoc"
version = "0.0.3"
version = "0.0.4"
dependencies = [
 "base64",
 "bitflags",
@@ -2986,7 +2986,7 @@ dependencies = [

[[package]]
name = "tor-proto"
version = "0.0.3"
version = "0.0.4"
dependencies = [
 "arrayref",
 "asynchronous-codec",
@@ -3029,7 +3029,7 @@ dependencies = [

[[package]]
name = "tor-rtcompat"
version = "0.0.3"
version = "0.0.4"
dependencies = [
 "async-io",
 "async-native-tls",
@@ -3048,7 +3048,7 @@ dependencies = [

[[package]]
name = "tor-rtmock"
version = "0.0.3"
version = "0.0.4"
dependencies = [
 "async-trait",
 "futures",
+4 −4
Original line number Diff line number Diff line
[package]
name = "arti-bench"
version = "0.0.3"
version = "0.0.4"
edition = "2018"
authors = ["The Tor Project, Inc.", "eta <eta@torproject.org>"]
license = "MIT OR Apache-2.0"
@@ -21,7 +21,7 @@ serde_json = "1.0.50"
tracing = "0.1.18"
tracing-subscriber = { version = "0.3.0", features = ["env-filter"] }
tokio = { version = "1.4", features = ["full"] }
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.3", features = ["tokio", "native-tls"] }
arti-config = { path="../arti-config", version = "0.0.3"}
arti-client = { package="arti-client", path = "../arti-client", version = "0.0.3"}
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.4", features = ["tokio", "native-tls"] }
arti-config = { path="../arti-config", version = "0.0.4"}
arti-client = { package="arti-client", path = "../arti-client", version = "0.0.4"}
tokio-socks = "0.5"
+8 −8
Original line number Diff line number Diff line
[package]
name = "arti-client"
version = "0.0.3"
version = "0.0.4"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@@ -25,13 +25,13 @@ static = [ "tor-rtcompat/static", "tor-dirmgr/static" ]
experimental-api = []

[dependencies]
tor-circmgr = { path="../tor-circmgr", version = "0.0.3"}
tor-config = { path="../tor-config", version = "0.0.3"}
tor-chanmgr = { path="../tor-chanmgr", version = "0.0.3"}
tor-dirmgr = { path="../tor-dirmgr", version = "0.0.3"}
tor-circmgr = { path="../tor-circmgr", version = "0.0.4"}
tor-config = { path="../tor-config", version = "0.0.4"}
tor-chanmgr = { path="../tor-chanmgr", version = "0.0.4"}
tor-dirmgr = { path="../tor-dirmgr", version = "0.0.4"}
tor-persist = { path="../tor-persist", version = "0.0.3"}
tor-proto = { path="../tor-proto", version = "0.0.3"}
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.3"}
tor-proto = { path="../tor-proto", version = "0.0.4"}
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.4"}

humantime-serde = "1"
derive_builder = "0.10"
@@ -44,7 +44,7 @@ serde = { version = "1.0.103", features = ["derive"] }
thiserror = "1"

[dev-dependencies]
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.3", features=["tokio", "native-tls" ] }
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.4", features=["tokio", "native-tls" ] }
tokio-crate = { package = "tokio", version = "1.4", features = ["rt", "rt-multi-thread", "io-util", "net", "time", "macros" ] }
hyper = { version = "0.14", features = ["http1", "client", "runtime"] }
pin-project = "1"
+4 −4
Original line number Diff line number Diff line
[package]
name = "arti-config"
version = "0.0.3"
version = "0.0.4"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@@ -11,9 +11,9 @@ categories = [ "config" ]
repository="https://gitlab.torproject.org/tpo/core/arti.git/"

[dependencies]
arti-client = { package="arti-client", path = "../arti-client", version = "0.0.3"}
tor-circmgr = { package="tor-circmgr", path="../tor-circmgr", version = "0.0.3"}
tor-config = { package="tor-config", path = "../tor-config", version = "0.0.3", features = ["expand-paths"]}
arti-client = { package="arti-client", path = "../arti-client", version = "0.0.4"}
tor-circmgr = { package="tor-circmgr", path="../tor-circmgr", version = "0.0.4"}
tor-config = { package="tor-config", path = "../tor-config", version = "0.0.4", features = ["expand-paths"]}
config = { version = "0.11.0", default-features = false, features = ["toml"] }
once_cell = "1"
serde = { version = "1.0.103", features = ["derive"] }
+4 −4
Original line number Diff line number Diff line
[package]
name = "arti"
version = "0.0.3"
version = "0.0.4"
authors = ["The Tor Project, Inc.", "Nick Mathewson <nickm@torproject.org>"]
edition = "2018"
license = "MIT OR Apache-2.0"
@@ -20,10 +20,10 @@ static = [ "arti-client/static" ]
journald = [ "tracing-journald" ]

[dependencies]
arti-client = { package="arti-client", path = "../arti-client", version = "0.0.3", default-features=false}
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.3", default-features=false }
arti-client = { package="arti-client", path = "../arti-client", version = "0.0.4", default-features=false}
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.4", default-features=false }
tor-socksproto = { path="../tor-socksproto", version = "0.0.3"}
arti-config = { path="../arti-config", version = "0.0.3"}
arti-config = { path="../arti-config", version = "0.0.4"}

anyhow = "1.0.5"
async-ctrlc = { version = "1.2.0", optional = true }
Loading