2020-11-23 07:52:07 +01:00
|
|
|
[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]
|
2020-11-24 16:11:27 +01:00
|
|
|
anyhow = "1.0"
|
2021-01-09 19:11:10 +01:00
|
|
|
async-stream = "0.3"
|
2021-01-16 14:44:18 +01:00
|
|
|
async-trait = "0.1"
|
2020-11-24 16:11:27 +01:00
|
|
|
dirs-next = "2.0"
|
2020-12-02 06:52:21 +01:00
|
|
|
futures = "0.3"
|
2021-04-01 10:01:48 +02:00
|
|
|
iced = { git = "https://github.com/hecrj/iced", rev = "90fee3a", features = ["debug", "image", "tokio"] }
|
|
|
|
iced_futures = { git = "https://github.com/hecrj/iced", rev = "90fee3a" }
|
|
|
|
#iced = { git = "https://github.com/hecrj/iced", rev = "90fee3a", features = ["debug", "image", "tokio", "glow"] }
|
|
|
|
#iced_glow = { git = "https://github.com/hecrj/iced", rev = "90fee3a", features = ["image"] }
|
2020-11-24 16:11:27 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-01-09 19:11:10 +01:00
|
|
|
time = "0.2"
|
2021-04-01 10:01:48 +02:00
|
|
|
tokio = { version = "1.1", features = ["sync"] }
|
2020-11-24 16:11:27 +01:00
|
|
|
toml = "0.5"
|
2020-12-03 12:12:07 +01:00
|
|
|
tracing-subscriber = { version = "0.2", features = ["parking_lot"] }
|
2020-12-07 17:12:21 +01:00
|
|
|
|
|
|
|
[dependencies.matrix-sdk]
|
|
|
|
git = "https://github.com/matrix-org/matrix-rust-sdk"
|
2021-04-01 10:01:48 +02:00
|
|
|
rev = "ff68360"
|
2020-12-07 17:12:21 +01:00
|
|
|
default_features = false
|
2021-04-01 10:01:48 +02:00
|
|
|
features = ["encryption", "rustls-tls", "unstable-synapse-quirks", "sled_cryptostore"]
|
2020-12-10 13:17:41 +01:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = "thin"
|