Make tokio a workspace dependency

This commit is contained in:
Jonas Platte
2023-03-28 20:37:04 +02:00
committed by Jonas Platte
parent cd33d8ca38
commit d680b331d0
13 changed files with 21 additions and 20 deletions

View File

@@ -16,6 +16,6 @@ ctor = { workspace = true }
matrix-sdk = { path = "../../crates/matrix-sdk" }
once_cell = { workspace = true }
tempfile = "3.3.0"
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros"] }
tracing = { workspace = true }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }

View File

@@ -27,7 +27,7 @@ serde = { workspace = true }
serde_json = { workspace = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { version = "1.24.2", default-features = false, features = ["rt", "macros"] }
tokio = { workspace = true, features = ["rt", "macros"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-test = "0.3.33"

View File

@@ -12,5 +12,5 @@ eyeball-im = { workspace = true }
futures = { version = "0.3.25" }
matrix-sdk-integration-testing = { path = "../matrix-sdk-integration-testing", features = ["helpers"] }
matrix-sdk = { path = "../../crates/matrix-sdk", features = ["experimental-sliding-sync", "testing"] }
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros"] }
uuid = { version = "1.2.2" }