cargo: bump to matrix-rust-sdk PR branch

Waiting for the autojoin fix to reach a release
This commit is contained in:
Antoine Martin 2021-09-11 20:07:18 +02:00
parent be8202d9da
commit 518f30d835
2 changed files with 6 additions and 11 deletions

15
Cargo.lock generated
View file

@ -1075,8 +1075,7 @@ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
[[package]] [[package]]
name = "matrix-qrcode" name = "matrix-qrcode"
version = "0.2.0" version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/matrix-org/matrix-rust-sdk?branch=fix-invite-events-emitting#20f6b7dbdb0f06676c63cd3f35077590207ab650"
checksum = "4231739aa2ff90c6c55b07d7179c52b496622a86fc2f7e0431336d109ba7838d"
dependencies = [ dependencies = [
"base64", "base64",
"byteorder", "byteorder",
@ -1090,8 +1089,7 @@ dependencies = [
[[package]] [[package]]
name = "matrix-sdk" name = "matrix-sdk"
version = "0.4.0" version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/matrix-org/matrix-rust-sdk?branch=fix-invite-events-emitting#20f6b7dbdb0f06676c63cd3f35077590207ab650"
checksum = "1119aaca5e48e4794ad19d981a6d69205d16b60a15c55cec46d6cb1a0725d579"
dependencies = [ dependencies = [
"backoff", "backoff",
"bytes", "bytes",
@ -1118,8 +1116,7 @@ dependencies = [
[[package]] [[package]]
name = "matrix-sdk-base" name = "matrix-sdk-base"
version = "0.4.0" version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/matrix-org/matrix-rust-sdk?branch=fix-invite-events-emitting#20f6b7dbdb0f06676c63cd3f35077590207ab650"
checksum = "c9907a9d8ae3caf2c18ff1334e712947caab891ccbe167dea7d1790ab1047ab3"
dependencies = [ dependencies = [
"chacha20poly1305", "chacha20poly1305",
"dashmap", "dashmap",
@ -1144,8 +1141,7 @@ dependencies = [
[[package]] [[package]]
name = "matrix-sdk-common" name = "matrix-sdk-common"
version = "0.4.0" version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/matrix-org/matrix-rust-sdk?branch=fix-invite-events-emitting#20f6b7dbdb0f06676c63cd3f35077590207ab650"
checksum = "d6a110018ac4df72a57f1c9d3976243c7c3ad7189f50aa7ca0032276c9c78519"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"futures", "futures",
@ -1161,8 +1157,7 @@ dependencies = [
[[package]] [[package]]
name = "matrix-sdk-crypto" name = "matrix-sdk-crypto"
version = "0.4.0" version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/matrix-org/matrix-rust-sdk?branch=fix-invite-events-emitting#20f6b7dbdb0f06676c63cd3f35077590207ab650"
checksum = "1683b93a94890337f75fdc3b8630a633c974089a9b5f874b4b5771cf82336bad"
dependencies = [ dependencies = [
"aes", "aes",
"aes-gcm", "aes-gcm",

View file

@ -8,7 +8,7 @@ edition = "2018"
[dependencies] [dependencies]
anyhow = "1.0" anyhow = "1.0"
clap = "3.0.0-beta.4" clap = "3.0.0-beta.4"
matrix-sdk = "0.4.0" matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk", branch = "fix-invite-events-emitting" }
serde = "1.0" serde = "1.0"
serde_yaml = "0.8" serde_yaml = "0.8"
tokio = { version = "1.0", features = [ "full" ] } tokio = { version = "1.0", features = [ "full" ] }