27 lines
639 B
TOML
27 lines
639 B
TOML
[package]
|
|
name = "RythmWorks"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
reqwest = { version = "0.12.28", features = ["blocking", "json"] }
|
|
semver = "1.0.27"
|
|
serde = "1.0.228"
|
|
serde_json = "1.0.148"
|
|
serenity = { version = "0.12.5", features = ["client", "gateway", "voice"] }
|
|
songbird = { version = "0.5.0", features = ["builtin-queue", "driver", "serenity"] }
|
|
symphonia = { version = "0.5.5", features = ["aac", "alac", "isomp4", "mp3"] }
|
|
tokio = "1.48.0"
|
|
yt-dlp = "1.4.7"
|
|
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = "fat"
|
|
debug = false
|
|
codegen-units = 1
|
|
panic = 'abort'
|
|
strip = true
|
|
debug-assertions = false
|
|
overflow-checks = true
|