From 283cf0d7822981683546ce150e7e726febe30aff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Tue, 7 Jul 2020 15:52:08 +0200 Subject: [PATCH] matrix-sdk: Bump all our deps. --- matrix_sdk/Cargo.toml | 20 ++++++++++---------- matrix_sdk_base/Cargo.toml | 12 ++++++------ matrix_sdk_common/Cargo.toml | 8 ++++---- matrix_sdk_common_macros/Cargo.toml | 4 ++-- matrix_sdk_crypto/Cargo.toml | 20 ++++++++++---------- matrix_sdk_test/Cargo.toml | 2 +- 6 files changed, 33 insertions(+), 33 deletions(-) diff --git a/matrix_sdk/Cargo.toml b/matrix_sdk/Cargo.toml index d970ef84..c49ec3b6 100644 --- a/matrix_sdk/Cargo.toml +++ b/matrix_sdk/Cargo.toml @@ -18,10 +18,10 @@ sqlite-cryptostore = ["matrix-sdk-base/sqlite-cryptostore"] [dependencies] http = "0.2.1" -reqwest = "0.10.4" -serde_json = "1.0.53" -thiserror = "1.0.19" -tracing = "0.1.14" +reqwest = "0.10.6" +serde_json = "1.0.56" +thiserror = "1.0.20" +tracing = "0.1.15" url = "2.1.1" futures-timer = { version = "3.0.2", features = ["wasm-bindgen"] } @@ -39,14 +39,14 @@ default-features = false features = ["std", "std-future"] [dev-dependencies] -async-trait = "0.1.31" -dirs = "2.0.2" +async-trait = "0.1.36" +dirs = "3.0.1" matrix-sdk-test = { version = "0.1.0", path = "../matrix_sdk_test" } tokio = { version = "0.2.21", features = ["rt-threaded", "macros"] } -ruma-identifiers = { version = "0.16.1", features = ["rand"] } -serde_json = "1.0.53" -tracing-subscriber = "0.2.5" +ruma-identifiers = { version = "0.16.2", features = ["rand"] } +serde_json = "1.0.56" +tracing-subscriber = "0.2.7" tempfile = "3.1.0" -mockito = "0.25.1" +mockito = "0.26.0" lazy_static = "1.4.0" futures = "0.3.5" diff --git a/matrix_sdk_base/Cargo.toml b/matrix_sdk_base/Cargo.toml index 1acb56b7..3ad0013e 100644 --- a/matrix_sdk_base/Cargo.toml +++ b/matrix_sdk_base/Cargo.toml @@ -17,9 +17,9 @@ encryption = ["matrix-sdk-crypto"] sqlite-cryptostore = ["matrix-sdk-crypto/sqlite-cryptostore"] [dependencies] -async-trait = "0.1.31" -serde = "1.0.110" -serde_json = "1.0.53" +async-trait = "0.1.36" +serde = "1.0.114" +serde_json = "1.0.56" zeroize = "1.1.0" matrix-sdk-common-macros = { version = "0.1.0", path = "../matrix_sdk_common_macros" } @@ -27,7 +27,7 @@ matrix-sdk-common = { version = "0.1.0", path = "../matrix_sdk_common" } matrix-sdk-crypto = { version = "0.1.0", path = "../matrix_sdk_crypto", optional = true } # Misc dependencies -thiserror = "1.0.19" +thiserror = "1.0.20" [target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio] version = "0.2.21" @@ -37,11 +37,11 @@ features = ["sync", "fs"] [dev-dependencies] matrix-sdk-test = { version = "0.1.0", path = "../matrix_sdk_test" } http = "0.2.1" -tracing-subscriber = "0.2.5" +tracing-subscriber = "0.2.7" tempfile = "3.1.0" [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] tokio = { version = "0.2.21", features = ["rt-threaded", "macros"] } [target.'cfg(target_arch = "wasm32")'.dev-dependencies] -wasm-bindgen-test = "0.3.12" +wasm-bindgen-test = "0.3.14" diff --git a/matrix_sdk_common/Cargo.toml b/matrix_sdk_common/Cargo.toml index 2d5d2c47..ed93e2a4 100644 --- a/matrix_sdk_common/Cargo.toml +++ b/matrix_sdk_common/Cargo.toml @@ -11,12 +11,12 @@ repository = "https://github.com/matrix-org/matrix-rust-sdk" version = "0.1.0" [dependencies] -js_int = "0.1.5" +js_int = "0.1.8" ruma-api = "0.16.1" ruma-client-api = "0.9.0" -ruma-events = "0.21.2" -ruma-identifiers = "0.16.1" -instant = { version = "0.1.4", features = ["wasm-bindgen", "now"] } +ruma-events = "0.21.3" +ruma-identifiers = "0.16.2" +instant = { version = "0.1.6", features = ["wasm-bindgen", "now"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] uuid = { version = "0.8.1", features = ["v4"] } diff --git a/matrix_sdk_common_macros/Cargo.toml b/matrix_sdk_common_macros/Cargo.toml index 3df8a0bf..2b0c6564 100644 --- a/matrix_sdk_common_macros/Cargo.toml +++ b/matrix_sdk_common_macros/Cargo.toml @@ -14,5 +14,5 @@ version = "0.1.0" proc-macro = true [dependencies] -syn = "1.0" -quote = "1.0" +syn = "1.0.33" +quote = "1.0.7" diff --git a/matrix_sdk_crypto/Cargo.toml b/matrix_sdk_crypto/Cargo.toml index 0ef831e3..920f8a45 100644 --- a/matrix_sdk_crypto/Cargo.toml +++ b/matrix_sdk_crypto/Cargo.toml @@ -15,23 +15,23 @@ default = [] sqlite-cryptostore = ["sqlx"] [dependencies] -async-trait = "0.1.31" +async-trait = "0.1.36" matrix-sdk-common-macros = { version = "0.1.0", path = "../matrix_sdk_common_macros" } matrix-sdk-common = { version = "0.1.0", path = "../matrix_sdk_common" } olm-rs = { version = "0.5.0", features = ["serde"] } -serde = { version = "1.0.110", features = ["derive"] } -serde_json = "1.0.53" -cjson = "0.1.0" +serde = { version = "1.0.114", features = ["derive"] } +serde_json = "1.0.56" +cjson = "0.1.1" zeroize = { version = "1.1.0", features = ["zeroize_derive"] } url = "2.1.1" # Misc dependencies -thiserror = "1.0.19" -tracing = "0.1.14" -atomic = "0.4.5" -dashmap = "3.11.2" +thiserror = "1.0.20" +tracing = "0.1.15" +atomic = "0.4.6" +dashmap = "3.11.7" [dependencies.tracing-futures] version = "0.2.4" @@ -46,8 +46,8 @@ features = ["runtime-tokio", "sqlite"] [dev-dependencies] tokio = { version = "0.2.21", features = ["rt-threaded", "macros"] } -ruma-identifiers = { version = "0.16.1", features = ["rand"] } -serde_json = "1.0.53" +ruma-identifiers = { version = "0.16.2", features = ["rand"] } +serde_json = "1.0.56" tempfile = "3.1.0" http = "0.2.1" matrix-sdk-test = { version = "0.1.0", path = "../matrix_sdk_test" } diff --git a/matrix_sdk_test/Cargo.toml b/matrix_sdk_test/Cargo.toml index b42c94de..52be0255 100644 --- a/matrix_sdk_test/Cargo.toml +++ b/matrix_sdk_test/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/matrix-org/matrix-rust-sdk" version = "0.1.0" [dependencies] -serde_json = "1.0.53" +serde_json = "1.0.56" http = "0.2.1" matrix-sdk-common = { version = "0.1.0", path = "../matrix_sdk_common" } matrix-sdk-test-macros = { version = "0.1.0", path = "../matrix_sdk_test_macros" }