BallBot/Cargo.toml
Wyatt J. Miller 031b2be817 added team command, added game command, added about command
added request module, added nfl module, among other items
2024-11-10 04:01:34 -05:00

23 lines
492 B
TOML

[package]
name = "ball-bot"
version = "0.1.0"
edition = "2021"
[dependencies]
serenity = { version = "0.12.2", features = [
"client",
"gateway",
"rustls_backend",
"model",
"collector",
] }
tokio = { version = "1.41.0", features = ["macros", "rt-multi-thread"] }
reqwest = { version = "0.12.9", features = ["json", "rustls-tls"] }
tracing = "0.1.40"
dotenvy = "0.15.7"
rand = "0.8.5"
chrono = { version = "0.4.38" }
serde = "1.0.214"
serde_json = "1.0.132"
serde_derive = "1.0.214"