blizzpacksbot/Cargo.toml
2025-06-15 13:21:51 +02:00

25 lines
561 B
TOML

[package]
name = "blizzpacksbot"
version = "0.1.0"
edition = "2024"
[dependencies]
color-eyre = "0.6.5"
config = "0.15.11"
poise = "0.6.1"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
sqlx = { version = "0.8.6", features = ["runtime-tokio", "postgres"] }
tokio = { version = "1.45.1", features = [
"tracing",
"macros",
"rt-multi-thread",
] }
tracing = "0.1.41"
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
[features]
default = ["cache"]
cache = ["poise/cache"]