Commit 4becaa01 authored by Nick Mathewson's avatar Nick Mathewson 🦞
Browse files

Bump minimum tokio to 1.7, since tokio-util now needs that.

parent d3661927
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ serde = { version = "1.0.103", features = ["derive"] }
serde_json = "1.0.50"
tracing = "0.1.18"
tracing-subscriber = { version = "0.3.0", features = ["env-filter"] }
tokio = { version = "1.4", features = ["full"] }
tokio = { version = "1.7", features = ["full"] }
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"}
+1 −1
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ thiserror = "1"

[dev-dependencies]
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" ] }
tokio-crate = { package = "tokio", version = "1.7", features = ["rt", "rt-multi-thread", "io-util", "net", "time", "macros" ] }
pin-project = "1"
tokio-util = { version = "0.7.0", features = ["compat"] }
anyhow = "1.0.23"
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ experimental-api = []
arti-client = { path="../arti-client", version = "0.0.4"}
hyper = { version = "0.14", features = ["http1", "client", "runtime"] }
pin-project = "1"
tokio = { package = "tokio", version = "1.4", features = ["rt", "rt-multi-thread", "io-util", "net", "time", "macros" ] }
tokio = { package = "tokio", version = "1.7", features = ["rt", "rt-multi-thread", "io-util", "net", "time", "macros" ] }
thiserror = "1"
tor-error = { path="../tor-error", version = "0.0.1" }
tor-rtcompat = { path="../tor-rtcompat", version = "0.0.4", features=["tokio"] }
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ once_cell = { version = "1", optional = true }
rlimit = "0.7.0"
serde = { version = "1.0.103", features = ["derive"] }
tracing-subscriber = { version = "0.3.0", features = ["env-filter"] }
tokio-crate = { package = "tokio", version = "1.4", optional = true, features = ["signal"] }
tokio-crate = { package = "tokio", version = "1.7", optional = true, features = ["signal"] }
clap = "2.33.0"
tracing-journald = { version = "0.2.0", optional = true }
tracing-appender = "0.2.0"
+1 −1
Original line number Diff line number Diff line
@@ -19,4 +19,4 @@ once_cell = "1"
thiserror = "1"

[dev-dependencies]
tokio = { version = "1.4", features = ["macros", "rt", "rt-multi-thread", "time"] }
tokio = { version = "1.7", features = ["macros", "rt", "rt-multi-thread", "time"] }
Loading