From 48b3307934cee814919f828e2aa5b22011b8cc3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Fri, 10 Sep 2021 10:08:48 +0200 Subject: [PATCH] chore: Bump our deps --- matrix_sdk/Cargo.toml | 2 +- matrix_sdk_appservice/Cargo.toml | 2 +- matrix_sdk_base/Cargo.toml | 10 +++++----- matrix_sdk_common/Cargo.toml | 2 +- matrix_sdk_crypto/Cargo.toml | 6 +++--- matrix_sdk_test/Cargo.toml | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/matrix_sdk/Cargo.toml b/matrix_sdk/Cargo.toml index 5242a7b5..50fd2295 100644 --- a/matrix_sdk/Cargo.toml +++ b/matrix_sdk/Cargo.toml @@ -58,7 +58,7 @@ version = "0.11.3" default_features = false [dependencies.ruma] -version = "0.3.0" +version = "0.4.0" features = ["client-api-c", "compat", "unstable-pre-spec"] [dependencies.tokio-stream] diff --git a/matrix_sdk_appservice/Cargo.toml b/matrix_sdk_appservice/Cargo.toml index 8191bc4f..da082a23 100644 --- a/matrix_sdk_appservice/Cargo.toml +++ b/matrix_sdk_appservice/Cargo.toml @@ -39,7 +39,7 @@ warp = { git = "https://github.com/seanmonstar/warp.git", rev = "629405", option matrix-sdk = { version = "0.3", path = "../matrix_sdk", default-features = false, features = ["appservice"] } [dependencies.ruma] -version = "0.3.0" +version = "0.4.0" features = ["client-api-c", "appservice-api-s", "unstable-pre-spec"] [dev-dependencies] diff --git a/matrix_sdk_base/Cargo.toml b/matrix_sdk_base/Cargo.toml index 3818b5ab..b9d9722a 100644 --- a/matrix_sdk_base/Cargo.toml +++ b/matrix_sdk_base/Cargo.toml @@ -25,7 +25,7 @@ docs = ["encryption", "sled_cryptostore"] [dependencies] dashmap = "4.0.2" lru = "0.6.5" -ruma = { version = "0.3.0", features = ["client-api-c", "unstable-pre-spec"] } +ruma = { version = "0.4.0", features = ["client-api-c", "unstable-pre-spec"] } serde = { version = "1.0.126", features = ["rc"] } serde_json = "1.0.64" tracing = "0.1.26" @@ -40,8 +40,8 @@ zeroize = { version = "1.3.0", features = ["zeroize_derive"] } # Deps for the sled state store sled = { version = "0.34.6", optional = true } -chacha20poly1305 = { version = "0.8.0", optional = true } -pbkdf2 = { version = "0.8.0", default-features = false, optional = true } +chacha20poly1305 = { version = "0.9.0", optional = true } +pbkdf2 = { version = "0.9.0", default-features = false, optional = true } hmac = { version = "0.11.0", optional = true } sha2 = { version = "0.9.5", optional = true } rand = { version = "0.8.4", optional = true } @@ -58,8 +58,8 @@ http = "0.2.4" [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] tokio = { version = "1.7.1", default-features = false, features = ["rt-multi-thread", "macros"] } tempfile = "3.2.0" -rustyline = "8.2.0" -rustyline-derive = "0.4.0" +rustyline = "9.0.0" +rustyline-derive = "0.5.0" atty = "0.2.14" clap = "2.33.3" syntect = "4.5.0" diff --git a/matrix_sdk_common/Cargo.toml b/matrix_sdk_common/Cargo.toml index 6913b707..f640b4e2 100644 --- a/matrix_sdk_common/Cargo.toml +++ b/matrix_sdk_common/Cargo.toml @@ -13,7 +13,7 @@ version = "0.3.0" [dependencies] async-trait = "0.1.50" instant = { version = "0.1.9", features = ["wasm-bindgen", "now"] } -ruma = { version = "0.3.0", features = ["client-api-c"] } +ruma = { version = "0.4.0", features = ["client-api-c"] } serde = "1.0.126" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] diff --git a/matrix_sdk_crypto/Cargo.toml b/matrix_sdk_crypto/Cargo.toml index b32074cb..87251b9a 100644 --- a/matrix_sdk_crypto/Cargo.toml +++ b/matrix_sdk_crypto/Cargo.toml @@ -22,9 +22,9 @@ docs = ["sled_cryptostore"] [dependencies] matrix-qrcode = { version = "0.1.0", path = "../matrix_qrcode" } matrix-sdk-common = { version = "0.3.0", path = "../matrix_sdk_common" } -ruma = { version = "0.3.0", features = ["client-api-c", "unstable-pre-spec"] } +ruma = { version = "0.4.0", features = ["client-api-c", "unstable-pre-spec"] } -olm-rs = { version = "2.0", features = ["serde"] } +olm-rs = { version = "2.0.1", features = ["serde"] } getrandom = "0.2.3" serde = { version = "1.0.126", features = ["derive", "rc"] } serde_json = "1.0.64" @@ -40,7 +40,7 @@ dashmap = "4.0.2" sha2 = "0.9.5" aes-gcm = "0.9.2" aes = { version = "0.7.4", features = ["ctr"] } -pbkdf2 = { version = "0.8.0", default-features = false } +pbkdf2 = { version = "0.9.0", default-features = false } hmac = "0.11.0" base64 = "0.13.0" byteorder = "1.4.3" diff --git a/matrix_sdk_test/Cargo.toml b/matrix_sdk_test/Cargo.toml index aa892329..a93a7d16 100644 --- a/matrix_sdk_test/Cargo.toml +++ b/matrix_sdk_test/Cargo.toml @@ -18,6 +18,6 @@ http = "0.2.4" lazy_static = "1.4.0" matrix-sdk-common = { version = "0.3.0", path = "../matrix_sdk_common" } matrix-sdk-test-macros = { version = "0.1.0", path = "../matrix_sdk_test_macros" } -ruma = { version = "0.3.0", features = ["client-api-c"] } +ruma = { version = "0.4.0", features = ["client-api-c"] } serde = "1.0.126" serde_json = "1.0.64"