Initial project setup with basic structure, including environment configuration, command handling, and Lavalink integration.

This commit is contained in:
2025-04-20 09:02:34 +08:00
parent 322434afbd
commit 05fec6747d
14 changed files with 324 additions and 2 deletions

16
Cargo.toml Normal file
View File

@@ -0,0 +1,16 @@
[package]
name = "discord-music-bot"
version = "1.0.0"
edition = "2021"
[dependencies]
serenity = { version = "0.12", features = ["client", "gateway", "cache", "model", "http", "builder", "voice", "rustls_backend", "application"] }
lavalink-rs = { version = "0.14", features = ["serenity", "tungstenite-rustls-native-roots"] }
tokio = { version = "1.28", features = ["macros", "rt-multi-thread"] }
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
dotenv = "0.15"
futures = "0.3"
inventory = { version = "0.3", features = ["proc-macro"] }
url = "2.4"