2022-08-02 15:06:04 +02:00
|
|
|
[package]
|
|
|
|
|
name = "example-command-bot"
|
|
|
|
|
version = "0.1.0"
|
2025-06-29 18:28:22 +02:00
|
|
|
edition = "2024"
|
2022-08-02 15:06:04 +02:00
|
|
|
publish = false
|
2024-10-04 13:08:10 +02:00
|
|
|
license = "Apache-2.0"
|
2022-08-02 15:06:04 +02:00
|
|
|
|
2025-05-22 22:17:38 +02:00
|
|
|
[package.metadata.release]
|
|
|
|
|
release = false
|
|
|
|
|
|
2022-08-04 19:04:51 +02:00
|
|
|
[[bin]]
|
|
|
|
|
name = "example-command-bot"
|
|
|
|
|
test = false
|
|
|
|
|
|
2022-08-02 15:06:04 +02:00
|
|
|
[dependencies]
|
2025-05-22 22:18:01 +02:00
|
|
|
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"] }
|
2025-05-22 22:18:01 +02:00
|
|
|
tracing-subscriber.workspace = true
|
2024-04-02 14:18:20 +02:00
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|