prololo-reborn/Cargo.toml

37 lines
868 B
TOML
Raw Normal View History

2021-09-08 17:50:31 +02:00
[package]
name = "prololo-reborn"
version = "0.1.0"
edition = "2018"
resolver = "2"
2021-09-08 17:50:31 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
2021-09-12 02:16:54 +02:00
hex = "0.4"
hmac = "0.11"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
serde_yaml = "0.8"
2021-09-12 02:16:54 +02:00
sha2 = "0.9"
tokio = { version = "1.0", features = [ "full" ] }
tracing-subscriber = "0.2"
tracing = "0.1"
url = { version = "2.2", features = [ "serde" ] }
[dependencies.matrix-sdk]
git = "https://github.com/matrix-org/matrix-rust-sdk"
branch = "fix-invite-events-emitting"
default-features = false
features = [ "native-tls" ]
[dependencies.clap]
version = "3.0.0-beta.4"
default-features = false
features = ["cargo", "derive", "std"]
2021-09-12 02:16:54 +02:00
[dependencies.rocket]
version = "0.5.0-rc.1"
# don't need private-cookies
default-features = false