35 lines
1018 B
TOML
35 lines
1018 B
TOML
[package]
|
|
name = "bot"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
# Logging
|
|
tracing = "0.1.41"
|
|
tracing-subscriber = { version = "0.3.20", features = ["env-filter", "fmt", "time"] }
|
|
tracing-actix-web = "0.7.19"
|
|
|
|
# Date/Time
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
# Async Runtime
|
|
tokio = { version = "1.48.0", features = ["full"] }
|
|
|
|
# Configuration
|
|
config = "0.15.18"
|
|
|
|
# Validation & Regex
|
|
regex = "1.12.2"
|
|
|
|
# Discord framework
|
|
poise = { version = "0.6.1", features = ["cache", "chrono", "handle_panics"] }
|
|
serenity = { version = "0.12", default-features = false, features = ["client", "gateway", "rustls_backend", "model", "cache"] }
|
|
|
|
# music
|
|
songbird = { version = "0.4.6", features = ["gateway", "serenity", "rustls"], default-features = false }
|
|
lavalink-rs = { version = "0.14.2", features = ["tungstenite-rustls-webpki-roots", "serenity", "songbird", "macros"], default-features = false }
|
|
|
|
# other
|
|
anyhow = "1.0.100"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.145" |