Upgrade Ruma

This commit is contained in:
Jonas Platte
2023-04-24 11:29:03 +02:00
committed by Jonas Platte
parent 24a903ccb0
commit d527dd37b1
2 changed files with 10 additions and 10 deletions

16
Cargo.lock generated
View File

@@ -4236,7 +4236,7 @@ dependencies = [
[[package]]
name = "ruma"
version = "0.8.2"
source = "git+https://github.com/ruma/ruma?rev=89e398fd062b4e763a3341fc7067428285d51d09#89e398fd062b4e763a3341fc7067428285d51d09"
source = "git+https://github.com/ruma/ruma?rev=0143bd9b9f5dcfcaa835afb76f342c12f014f945#0143bd9b9f5dcfcaa835afb76f342c12f014f945"
dependencies = [
"assign",
"js_int",
@@ -4251,7 +4251,7 @@ dependencies = [
[[package]]
name = "ruma-appservice-api"
version = "0.8.1"
source = "git+https://github.com/ruma/ruma?rev=89e398fd062b4e763a3341fc7067428285d51d09#89e398fd062b4e763a3341fc7067428285d51d09"
source = "git+https://github.com/ruma/ruma?rev=0143bd9b9f5dcfcaa835afb76f342c12f014f945#0143bd9b9f5dcfcaa835afb76f342c12f014f945"
dependencies = [
"js_int",
"ruma-common",
@@ -4262,7 +4262,7 @@ dependencies = [
[[package]]
name = "ruma-client-api"
version = "0.16.2"
source = "git+https://github.com/ruma/ruma?rev=89e398fd062b4e763a3341fc7067428285d51d09#89e398fd062b4e763a3341fc7067428285d51d09"
source = "git+https://github.com/ruma/ruma?rev=0143bd9b9f5dcfcaa835afb76f342c12f014f945#0143bd9b9f5dcfcaa835afb76f342c12f014f945"
dependencies = [
"assign",
"bytes",
@@ -4279,7 +4279,7 @@ dependencies = [
[[package]]
name = "ruma-common"
version = "0.11.3"
source = "git+https://github.com/ruma/ruma?rev=89e398fd062b4e763a3341fc7067428285d51d09#89e398fd062b4e763a3341fc7067428285d51d09"
source = "git+https://github.com/ruma/ruma?rev=0143bd9b9f5dcfcaa835afb76f342c12f014f945#0143bd9b9f5dcfcaa835afb76f342c12f014f945"
dependencies = [
"base64 0.21.0",
"bytes",
@@ -4312,7 +4312,7 @@ dependencies = [
[[package]]
name = "ruma-federation-api"
version = "0.7.1"
source = "git+https://github.com/ruma/ruma?rev=89e398fd062b4e763a3341fc7067428285d51d09#89e398fd062b4e763a3341fc7067428285d51d09"
source = "git+https://github.com/ruma/ruma?rev=0143bd9b9f5dcfcaa835afb76f342c12f014f945#0143bd9b9f5dcfcaa835afb76f342c12f014f945"
dependencies = [
"js_int",
"ruma-common",
@@ -4323,7 +4323,7 @@ dependencies = [
[[package]]
name = "ruma-identifiers-validation"
version = "0.9.1"
source = "git+https://github.com/ruma/ruma?rev=89e398fd062b4e763a3341fc7067428285d51d09#89e398fd062b4e763a3341fc7067428285d51d09"
source = "git+https://github.com/ruma/ruma?rev=0143bd9b9f5dcfcaa835afb76f342c12f014f945#0143bd9b9f5dcfcaa835afb76f342c12f014f945"
dependencies = [
"js_int",
"thiserror",
@@ -4332,7 +4332,7 @@ dependencies = [
[[package]]
name = "ruma-macros"
version = "0.11.3"
source = "git+https://github.com/ruma/ruma?rev=89e398fd062b4e763a3341fc7067428285d51d09#89e398fd062b4e763a3341fc7067428285d51d09"
source = "git+https://github.com/ruma/ruma?rev=0143bd9b9f5dcfcaa835afb76f342c12f014f945#0143bd9b9f5dcfcaa835afb76f342c12f014f945"
dependencies = [
"once_cell",
"proc-macro-crate",
@@ -4347,7 +4347,7 @@ dependencies = [
[[package]]
name = "ruma-push-gateway-api"
version = "0.7.1"
source = "git+https://github.com/ruma/ruma?rev=89e398fd062b4e763a3341fc7067428285d51d09#89e398fd062b4e763a3341fc7067428285d51d09"
source = "git+https://github.com/ruma/ruma?rev=0143bd9b9f5dcfcaa835afb76f342c12f014f945#0143bd9b9f5dcfcaa835afb76f342c12f014f945"
dependencies = [
"js_int",
"ruma-common",

View File

@@ -32,8 +32,8 @@ eyeball = "0.4.0"
eyeball-im = "0.2.0"
futures-util = { version = "0.3.26", default-features = false, features = ["alloc"] }
http = "0.2.6"
ruma = { git = "https://github.com/ruma/ruma", rev = "89e398fd062b4e763a3341fc7067428285d51d09", features = ["client-api-c"] }
ruma-common = { git = "https://github.com/ruma/ruma", rev = "89e398fd062b4e763a3341fc7067428285d51d09" }
ruma = { git = "https://github.com/ruma/ruma", rev = "0143bd9b9f5dcfcaa835afb76f342c12f014f945", features = ["client-api-c"] }
ruma-common = { git = "https://github.com/ruma/ruma", rev = "0143bd9b9f5dcfcaa835afb76f342c12f014f945" }
once_cell = "1.16.0"
serde = "1.0.151"
serde_html_form = "0.2.0"