wOxlf/Cargo.toml
Joey Hines e72d603149
Added commands + persistence
+ `say`: used by the host to speak in the game chat
+ `end`: ends the game and cleans up
+ `broadcast`: Send an important game message that that is pinned in each channel
+ Persistent allows games to continue across bot restarts
+ clippy + fmt
2022-03-06 10:03:49 -07:00

22 lines
449 B
TOML

[package]
name = "woxlf"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
config = "0.12.0"
structopt = "0.3.26"
chrono = "0.4.19"
serde = "1.0.136"
rand = "0.8.5"
toml = "0.5.8"
[dependencies.serenity]
version = "0.10.10"
features = ["framework", "standard_framework"]
[dependencies.tokio]
version = "1.0"
features = ["macros", "rt-multi-thread"]