From 53daf40c7c31e0e851248424b2511029dfa9f775 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Sat, 21 Nov 2020 16:33:12 +0100 Subject: [PATCH] matrix-sdk: Use the latest ruma and olm-rs. --- matrix_sdk_common/Cargo.toml | 4 ++-- matrix_sdk_crypto/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/matrix_sdk_common/Cargo.toml b/matrix_sdk_common/Cargo.toml index cf1a8c27..76ceeff0 100644 --- a/matrix_sdk_common/Cargo.toml +++ b/matrix_sdk_common/Cargo.toml @@ -20,8 +20,8 @@ js_int = "0.1.9" [dependencies.ruma] version = "0.0.1" -path = "/home/poljar/werk/priv/ruma/ruma" -rev = "50eb700571480d1440e15a387d10f98be8abab59" +git = "https://github.com/ruma/ruma" +rev = "d16fd4b2c1be1b06fd9be99373a3e77d74fadff3" features = ["client-api", "unstable-pre-spec", "unstable-exhaustive-types"] [target.'cfg(not(target_arch = "wasm32"))'.dependencies] diff --git a/matrix_sdk_crypto/Cargo.toml b/matrix_sdk_crypto/Cargo.toml index 0fa35f86..4e7ee157 100644 --- a/matrix_sdk_crypto/Cargo.toml +++ b/matrix_sdk_crypto/Cargo.toml @@ -25,7 +25,7 @@ async-trait = "0.1.41" 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 = { path = "/home/poljar/werk/priv/olm-rs", version = "1.0.0", features = ["serde"] } +olm-rs = { version = "1.0.0", features = ["serde"] } getrandom = "0.2.0" serde = { version = "1.0.116", features = ["derive", "rc"] } serde_json = "1.0.59"