summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFerris Tseng <ferristseng@fastmail.fm>2021-04-04 19:37:24 -0400
committerFerris Tseng <ferristseng@fastmail.fm>2021-04-04 19:37:24 -0400
commit7771a0db1374b43d2c7445f29566a5e0bd38cf22 (patch)
tree3fac16a60dc34310b6bd4407397d4c313d881569
parentdf7dc43b2115192264f772f288ef5b3a1cfa54c7 (diff)
use tokio 1 instead of 1.2
-rw-r--r--ipfs-api-examples/Cargo.toml2
-rw-r--r--ipfs-api-prelude/Cargo.toml2
2 files changed, 2 insertions, 2 deletions
diff --git a/ipfs-api-examples/Cargo.toml b/ipfs-api-examples/Cargo.toml
index 4f8a355..121df64 100644
--- a/ipfs-api-examples/Cargo.toml
+++ b/ipfs-api-examples/Cargo.toml
@@ -22,6 +22,6 @@ futures = "0.3"
ipfs-api-backend-actix = { version = "0.1", path = "../ipfs-api-backend-actix", optional = true }
ipfs-api-backend-hyper = { version = "0.1", path = "../ipfs-api-backend-hyper", optional = true }
tar = "0.4"
-tokio = { version = "1.2", features = ["time"] }
+tokio = { version = "1", features = ["time"] }
tokio-stream = { version = "0.1", features = ["time"] }
tracing-subscriber = { version = "0.2", features = ["fmt"] }
diff --git a/ipfs-api-prelude/Cargo.toml b/ipfs-api-prelude/Cargo.toml
index 2182f85..9cedf4c 100644
--- a/ipfs-api-prelude/Cargo.toml
+++ b/ipfs-api-prelude/Cargo.toml
@@ -33,7 +33,7 @@ typed-builder = { version = "0.9", optional = true }
walkdir = "2.3"
[dev-dependencies]
-tokio = { version = "1.2", features = ["rt-multi-thread", "macros", "time"] }
ipfs-api = { package = "ipfs-api-backend-hyper", version = "0.1", path = "../ipfs-api-backend-hyper" }
+tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
tokio-stream = { version = "0.1", features = ["time"] }
tracing-subscriber = { version = "0.2", features = ["fmt"] }