24 lines
800 B
TOML
24 lines
800 B
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-trait = "0.1"
|
|
crossbeam-channel = "0.4"
|
|
dirs-next = "2.0"
|
|
futures = "0.3"
|
|
iced = { version = "0.2", features = ["debug", "tokio_old", "image"] }
|
|
iced_futures = "0.2"
|
|
hostname = "0.3"
|
|
matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk", rev = "e65915e" }
|
|
matrix-sdk-common-macros = { git = "https://github.com/matrix-org/matrix-rust-sdk", rev = "e65915e" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tokio = { version = "0.2", features = ["sync"] }
|
|
toml = "0.5"
|
|
tracing-subscriber = { version = "0.2", features = ["parking_lot"] }
|