|
|
|
@ -59,10 +59,10 @@ zeroize = { workspace = true, features = ["zeroize_derive"] }
|
|
|
|
|
cfg-if = "1.0"
|
|
|
|
|
|
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
|
|
|
tokio = { version = "1.24", default-features = false, features = ["sync"] }
|
|
|
|
|
tokio = { workspace = true }
|
|
|
|
|
|
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
|
|
|
tokio = { version = "1.24", default-features = false, features = ["time"] }
|
|
|
|
|
tokio = { workspace = true, features = ["time"] }
|
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
@ -74,5 +74,5 @@ indoc = "1.0.4"
|
|
|
|
|
matrix-sdk-test = { version = "0.6.0", path = "../../testing/matrix-sdk-test" }
|
|
|
|
|
proptest = { version = "1.0.0", default-features = false, features = ["std"] }
|
|
|
|
|
# required for async_test macro
|
|
|
|
|
tokio = { version = "1.24.2", default-features = false, features = ["macros", "rt-multi-thread"] }
|
|
|
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
|
|
|
|
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
|
|
|
|
|