Initial code upload

This commit is contained in:
2025-04-20 00:49:17 +08:00
parent fe4f0aec41
commit 44170c8ae7
11 changed files with 827 additions and 0 deletions

18
Cargo.toml Normal file
View File

@@ -0,0 +1,18 @@
[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"