18 lines
636 B
TOML
18 lines
636 B
TOML
[package]
|
|
name = "discord-music-bot-lavalink-rs"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
serenity = { version = "0.12", features = ["builder", "cache", "client", "gateway", "model", "framework", "standard_framework", "http", "rustls_backend", "voice", "collector", "interactions"] }
|
|
lavalink-rs = { version = "0.14", features = ["serenity", "tungstenite-rustls-native-roots"] }
|
|
tokio = { version = "1.44", features = ["full"] }
|
|
dotenv = "0.15"
|
|
url = "2.5"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
anyhow = "1.0"
|
|
# Add inventory for command registration
|
|
inventory = "0.3"
|
|
# Add futures for boxed async traits
|
|
futures = "0.3" |