From 24e6d780fcd75b6a38ce1be51181bf3299d987c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Mon, 7 Apr 2025 09:31:38 +0000 Subject: [PATCH] Upgrade Ruma to version 0.12.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Kévin Commaille --- Cargo.lock | 34 +++++++++++++++++++++------------- Cargo.toml | 4 ++-- 2 files changed, 23 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 492e69dd2..f0e373ec6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4413,8 +4413,9 @@ dependencies = [ [[package]] name = "ruma" -version = "0.12.1" -source = "git+https://github.com/ruma/ruma?rev=b1cb83544faafaef92be56c53cd98af4c51da858#b1cb83544faafaef92be56c53cd98af4c51da858" +version = "0.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c64fdaae631940eda62844a8a3026aba2ba84c22588c888ebec44861ba4d0c18" dependencies = [ "assign", "js_int", @@ -4429,8 +4430,9 @@ dependencies = [ [[package]] name = "ruma-client-api" -version = "0.20.1" -source = "git+https://github.com/ruma/ruma?rev=b1cb83544faafaef92be56c53cd98af4c51da858#b1cb83544faafaef92be56c53cd98af4c51da858" +version = "0.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9a89ac03a0f4451f946ed9aed6fdd16ef5a78a3a2849e87af4b2474a176b2fb" dependencies = [ "as_variant", "assign", @@ -4452,8 +4454,9 @@ dependencies = [ [[package]] name = "ruma-common" -version = "0.15.1" -source = "git+https://github.com/ruma/ruma?rev=b1cb83544faafaef92be56c53cd98af4c51da858#b1cb83544faafaef92be56c53cd98af4c51da858" +version = "0.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b75da013b362664c3e161662902e5da3f77e990525681b59c6035bac27e87b4" dependencies = [ "as_variant", "base64", @@ -4484,8 +4487,9 @@ dependencies = [ [[package]] name = "ruma-events" -version = "0.30.1" -source = "git+https://github.com/ruma/ruma?rev=b1cb83544faafaef92be56c53cd98af4c51da858#b1cb83544faafaef92be56c53cd98af4c51da858" +version = "0.30.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c100eb6c7691ef010f18d9af315f486fc4da621b7203c431e88352148e84551" dependencies = [ "as_variant", "indexmap", @@ -4509,8 +4513,9 @@ dependencies = [ [[package]] name = "ruma-federation-api" -version = "0.11.0" -source = "git+https://github.com/ruma/ruma?rev=b1cb83544faafaef92be56c53cd98af4c51da858#b1cb83544faafaef92be56c53cd98af4c51da858" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "373bc5a30b84574dfce3e75c33d79d6ba9843bf0eee1bf351f904eef9bea001a" dependencies = [ "http", "js_int", @@ -4524,7 +4529,8 @@ dependencies = [ [[package]] name = "ruma-html" version = "0.4.0" -source = "git+https://github.com/ruma/ruma?rev=b1cb83544faafaef92be56c53cd98af4c51da858#b1cb83544faafaef92be56c53cd98af4c51da858" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f3257ce3398e171ff15245767b1a3d201cfc5cce75f5af7ec7f6b8b5e1d2bdb" dependencies = [ "as_variant", "html5ever", @@ -4536,7 +4542,8 @@ dependencies = [ [[package]] name = "ruma-identifiers-validation" version = "0.10.1" -source = "git+https://github.com/ruma/ruma?rev=b1cb83544faafaef92be56c53cd98af4c51da858#b1cb83544faafaef92be56c53cd98af4c51da858" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ad674b5e5368c53a2c90fde7dac7e30747004aaf7b1827b72874a25fc06d4d8" dependencies = [ "js_int", "thiserror 2.0.11", @@ -4545,7 +4552,8 @@ dependencies = [ [[package]] name = "ruma-macros" version = "0.15.1" -source = "git+https://github.com/ruma/ruma?rev=b1cb83544faafaef92be56c53cd98af4c51da858#b1cb83544faafaef92be56c53cd98af4c51da858" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1182e83ee5cd10121974f163337b16af68a93eedfc7cdbdbd52307ac7e1d743" dependencies = [ "cfg-if", "proc-macro-crate", diff --git a/Cargo.toml b/Cargo.toml index cf2dc409f..58b63aaab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,7 +60,7 @@ reqwest = { version = "0.12.12", default-features = false } rmp-serde = "1.3.0" # Be careful to use commits from the https://github.com/ruma/ruma/tree/ruma-0.12 # branch until a proper release with breaking changes happens. -ruma = { git = "https://github.com/ruma/ruma", rev = "b1cb83544faafaef92be56c53cd98af4c51da858", features = [ +ruma = { version = "0.12.2", features = [ "client-api-c", "compat-upload-signatures", "compat-user-id", @@ -75,7 +75,7 @@ ruma = { git = "https://github.com/ruma/ruma", rev = "b1cb83544faafaef92be56c53c "unstable-msc4140", "unstable-msc4171", ] } -ruma-common = { git = "https://github.com/ruma/ruma", rev = "b1cb83544faafaef92be56c53cd98af4c51da858" } +ruma-common = "0.15.2" serde = "1.0.217" serde_html_form = "0.2.7" serde_json = "1.0.138"