Files
matrix-rust-sdk/examples/command_bot/Cargo.toml
T

25 lines
579 B
TOML
Raw Normal View History

[package]
name = "example-command-bot"
version = "0.1.0"
edition = "2024"
publish = false
license = "Apache-2.0"
2025-05-22 22:17:38 +02:00
[package.metadata.release]
release = false
[[bin]]
name = "example-command-bot"
test = false
[dependencies]
anyhow.workspace = true
2023-07-20 13:08:33 +02:00
# when copy-pasting this, please use a git dependency or make sure that you
# have copied the example as it was at the time of the release you use.
matrix-sdk = { path = "../../crates/matrix-sdk" }
2025-05-22 22:17:38 +02:00
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
tracing-subscriber.workspace = true
[lints]
workspace = true