wOxlf/Cargo.toml
Joey Hines 0796f0be21
General cleanup after the first game
+ Randomized codename order obscuring players more
+ Added better error handling code
+ Support hour + minute time increments
+ Refactored layout to be more clear
+ clippy + fmt
2022-03-19 21:12:38 -06:00

23 lines
495 B
TOML

[package]
name = "woxlf"
version = "0.2.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 = {version="0.4.19", features=["serde"]}
serde = "1.0.136"
rand = "0.8.5"
toml = "0.5.8"
regex = "1.5.5"
[dependencies.serenity]
version = "0.10.10"
features = ["framework", "standard_framework"]
[dependencies.tokio]
version = "1.0"
features = ["macros", "rt-multi-thread"]