Amanda Graven
a8b76eaded
Also hide rooms with tombstone in roomlist if we've joined the room the tombstone points to. Fixed rooms joined from different clients having an empty display name.
32 lines
1 KiB
TOML
32 lines
1 KiB
TOML
[package]
|
|
name = "retrix"
|
|
version = "0.1.0"
|
|
authors = ["Amanda Graven <amanda@amandag.net>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
async-stream = "0.3"
|
|
async-trait = "0.1"
|
|
dirs-next = "2.0"
|
|
futures = "0.3"
|
|
iced = { git = "https://github.com/hecrj/iced", rev = "31522e3", features = ["debug", "image", "tokio"] }
|
|
iced_futures = { git = "https://github.com/hecrj/iced", rev = "31522e3" }
|
|
#iced_glow = { git = "https://github.com/hecrj/iced", rev = "31522e3", features = ["image"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
time = "0.2"
|
|
tokio = { version = "1.0", features = ["sync"] }
|
|
toml = "0.5"
|
|
tracing-subscriber = { version = "0.2", features = ["parking_lot"] }
|
|
|
|
[dependencies.matrix-sdk]
|
|
git = "https://github.com/matrix-org/matrix-rust-sdk"
|
|
rev = "40c53f0"
|
|
default_features = false
|
|
features = ["encryption", "sqlite_cryptostore", "messages", "rustls-tls", "unstable-synapse-quirks"]
|
|
|
|
[profile.release]
|
|
lto = "thin"
|