matrix-bot/Cargo.toml

27 lines
600 B
TOML
Raw Normal View History

2022-05-06 05:01:27 +00:00
[package]
name = "matrix-bot"
version = "0.1.0"
authors = ["Edward Shen <code@eddie.sh>"]
edition = "2021"
2022-05-09 08:19:03 +00:00
include = ["src/main.rs"]
2022-05-06 05:01:27 +00:00
[dependencies]
2022-05-09 08:19:03 +00:00
anyhow = "1"
clap = { version = "3", features = ["derive", "cargo"] }
2022-05-09 08:25:49 +00:00
enum-iterator = "0.8"
2022-05-09 08:19:03 +00:00
serde = { version = "1", features = ["derive"] }
2022-05-06 05:01:27 +00:00
tokio = { version = "1", features = ["full"] }
2022-05-09 08:19:03 +00:00
toml = "0.5"
2022-05-06 05:01:27 +00:00
tracing = "0.1"
tracing-subscriber = "0.3"
2022-05-06 05:46:26 +00:00
uwuify = "0.2"
[dependencies.matrix-sdk]
git = "https://github.com/matrix-org/matrix-rust-sdk"
rev = "be2a818c84b21980e9219fa8bd4c15d3a9c588c2"
2022-05-06 05:46:26 +00:00
[profile.release]
strip = true
2022-05-06 06:01:00 +00:00
lto = "fat"
2022-05-09 08:19:03 +00:00
codegen-units = 1