ff9a46c05c
Added a Token Credential Manager - Closes #4 Added TUI Menu - Closes #2
38 lines
1.2 KiB
TOML
38 lines
1.2 KiB
TOML
[package]
|
|
name = "RhythmWorks"
|
|
version = "0.5.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
dialoguer = "0.12.0"
|
|
keyring = { version = "3.6.3", features = ["linux-native", "windows-native"] }
|
|
opentelemetry = { version = "0.27.0", features = ["logs", "metrics", "trace"] }
|
|
opentelemetry-otlp = { version = "0.27.0", features = ["trace", "metrics", "grpc-tonic", "http-proto", "tls", "reqwest-client", "reqwest-rustls"] }
|
|
opentelemetry-proto = "0.27.0"
|
|
opentelemetry-semantic-conventions = "0.27.0"
|
|
opentelemetry_sdk = { version = "0.27.0", features = ["rt-tokio", "trace"] }
|
|
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"
|
|
tonic = { version = "0.12.3", features = ["tls-roots"] }
|
|
tracing = "0.1.41"
|
|
tracing-opentelemetry = "0.32.0"
|
|
tracing-subscriber = "0.3.20"
|
|
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
|