Reuse upstream Ruma repository

This was a temporary replacement I've made, waiting for a PR of mine to be merged, and it's been merged since then. Oh well.

Signed-off-by: Benjamin Bouvier <public@benj.me>
This commit is contained in:
Benjamin Bouvier 2023-06-05 19:25:25 +02:00
parent f61fdcbdbe
commit d1a1a0f5c5
2 changed files with 10 additions and 10 deletions

16
Cargo.lock generated
View File

@ -4239,7 +4239,7 @@ dependencies = [
[[package]]
name = "ruma"
version = "0.8.2"
source = "git+https://github.com/bnjbvr/ruma?rev=97fc09cd81ab32a2f1f6178b4996b3855ada565d#97fc09cd81ab32a2f1f6178b4996b3855ada565d"
source = "git+https://github.com/ruma/ruma?rev=e3282d8bfebc69d2e64815105ebe9dced130b94a#e3282d8bfebc69d2e64815105ebe9dced130b94a"
dependencies = [
"assign",
"js_int",
@ -4254,7 +4254,7 @@ dependencies = [
[[package]]
name = "ruma-appservice-api"
version = "0.8.1"
source = "git+https://github.com/bnjbvr/ruma?rev=97fc09cd81ab32a2f1f6178b4996b3855ada565d#97fc09cd81ab32a2f1f6178b4996b3855ada565d"
source = "git+https://github.com/ruma/ruma?rev=e3282d8bfebc69d2e64815105ebe9dced130b94a#e3282d8bfebc69d2e64815105ebe9dced130b94a"
dependencies = [
"js_int",
"ruma-common",
@ -4265,7 +4265,7 @@ dependencies = [
[[package]]
name = "ruma-client-api"
version = "0.16.2"
source = "git+https://github.com/bnjbvr/ruma?rev=97fc09cd81ab32a2f1f6178b4996b3855ada565d#97fc09cd81ab32a2f1f6178b4996b3855ada565d"
source = "git+https://github.com/ruma/ruma?rev=e3282d8bfebc69d2e64815105ebe9dced130b94a#e3282d8bfebc69d2e64815105ebe9dced130b94a"
dependencies = [
"assign",
"bytes",
@ -4282,7 +4282,7 @@ dependencies = [
[[package]]
name = "ruma-common"
version = "0.11.3"
source = "git+https://github.com/bnjbvr/ruma?rev=97fc09cd81ab32a2f1f6178b4996b3855ada565d#97fc09cd81ab32a2f1f6178b4996b3855ada565d"
source = "git+https://github.com/ruma/ruma?rev=e3282d8bfebc69d2e64815105ebe9dced130b94a#e3282d8bfebc69d2e64815105ebe9dced130b94a"
dependencies = [
"base64 0.21.0",
"bytes",
@ -4315,7 +4315,7 @@ dependencies = [
[[package]]
name = "ruma-federation-api"
version = "0.7.1"
source = "git+https://github.com/bnjbvr/ruma?rev=97fc09cd81ab32a2f1f6178b4996b3855ada565d#97fc09cd81ab32a2f1f6178b4996b3855ada565d"
source = "git+https://github.com/ruma/ruma?rev=e3282d8bfebc69d2e64815105ebe9dced130b94a#e3282d8bfebc69d2e64815105ebe9dced130b94a"
dependencies = [
"js_int",
"ruma-common",
@ -4326,7 +4326,7 @@ dependencies = [
[[package]]
name = "ruma-identifiers-validation"
version = "0.9.1"
source = "git+https://github.com/bnjbvr/ruma?rev=97fc09cd81ab32a2f1f6178b4996b3855ada565d#97fc09cd81ab32a2f1f6178b4996b3855ada565d"
source = "git+https://github.com/ruma/ruma?rev=e3282d8bfebc69d2e64815105ebe9dced130b94a#e3282d8bfebc69d2e64815105ebe9dced130b94a"
dependencies = [
"js_int",
"thiserror",
@ -4335,7 +4335,7 @@ dependencies = [
[[package]]
name = "ruma-macros"
version = "0.11.3"
source = "git+https://github.com/bnjbvr/ruma?rev=97fc09cd81ab32a2f1f6178b4996b3855ada565d#97fc09cd81ab32a2f1f6178b4996b3855ada565d"
source = "git+https://github.com/ruma/ruma?rev=e3282d8bfebc69d2e64815105ebe9dced130b94a#e3282d8bfebc69d2e64815105ebe9dced130b94a"
dependencies = [
"once_cell",
"proc-macro-crate",
@ -4350,7 +4350,7 @@ dependencies = [
[[package]]
name = "ruma-push-gateway-api"
version = "0.7.1"
source = "git+https://github.com/bnjbvr/ruma?rev=97fc09cd81ab32a2f1f6178b4996b3855ada565d#97fc09cd81ab32a2f1f6178b4996b3855ada565d"
source = "git+https://github.com/ruma/ruma?rev=e3282d8bfebc69d2e64815105ebe9dced130b94a#e3282d8bfebc69d2e64815105ebe9dced130b94a"
dependencies = [
"js_int",
"ruma-common",

View File

@ -35,8 +35,8 @@ futures-core = "0.3.28"
futures-executor = "0.3.21"
futures-util = { version = "0.3.26", default-features = false, features = ["alloc"] }
http = "0.2.6"
ruma = { git = "https://github.com/bnjbvr/ruma", rev = "97fc09cd81ab32a2f1f6178b4996b3855ada565d", features = ["client-api-c", "compat-user-id"] }
ruma-common = { git = "https://github.com/bnjbvr/ruma", rev = "97fc09cd81ab32a2f1f6178b4996b3855ada565d" }
ruma = { git = "https://github.com/ruma/ruma", rev = "e3282d8bfebc69d2e64815105ebe9dced130b94a", features = ["client-api-c", "compat-user-id"] }
ruma-common = { git = "https://github.com/ruma/ruma", rev = "e3282d8bfebc69d2e64815105ebe9dced130b94a" }
once_cell = "1.16.0"
serde = "1.0.151"
serde_html_form = "0.2.0"