Files
matrix-rust-sdk/examples/timeline/Cargo.toml
Damir Jelić 4a6208f808 feat(crypto): Add signaling to the SAS verification
This patch adds a way for users to listen to changes in the state of a
SAS verification.

This makes it much more pleasant to go through the verification flow and
incidentally easier to document it.
2022-10-24 09:50:17 +02:00

24 lines
503 B
TOML

[package]
name = "example-timeline"
version = "0.1.0"
edition = "2021"
publish = false
[[bin]]
name = "example-timeline"
test = false
[dependencies]
anyhow = "1"
clap = "4.0.16"
futures = "0.3"
futures-signals = { version = "0.3.30", default-features = false }
tokio = { version = "1.20.1", features = ["macros", "rt-multi-thread"] }
tracing-subscriber = "0.3.15"
url = "2.2.2"
[dependencies.matrix-sdk]
path = "../../crates/matrix-sdk"
features = ["experimental-timeline", "sled"]
version = "0.6.0"