16 lines
541 B
TOML
16 lines
541 B
TOML
[package]
|
|
name = "cinderwatch"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
serenity = { version = "0.12", features = ["rustls_backend", "model", "standard_framework", "gateway", "http", "client", "cache"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
rusqlite = { version = "0.31", features = ["bundled"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
dotenvy = "0.15"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
reqwest = { version = "0.12", features = ["rustls-tls"] }
|
|
futures = "0.3"
|