mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-01-30 18:22:28 -05:00
22 lines
547 B
TOML
22 lines
547 B
TOML
[package]
|
|
name = "example-command-bot"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "Apache-2.0"
|
|
|
|
[[bin]]
|
|
name = "example-command-bot"
|
|
test = false
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
|
tracing-subscriber = { workspace = true }
|
|
# 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" }
|
|
|
|
[lints]
|
|
workspace = true
|