spoticord/Cargo.toml

37 lines
774 B
TOML
Raw Normal View History

2022-10-18 20:59:32 +00:00
[package]
name = "spoticord"
2023-09-23 17:51:45 +00:00
version = "2.1.1"
2022-10-18 20:59:32 +00:00
edition = "2021"
rust-version = "1.65.0"
2022-10-18 20:59:32 +00:00
2022-10-31 21:46:34 +00:00
[[bin]]
name = "spoticord"
path = "src/main.rs"
2022-10-18 20:59:32 +00:00
2023-09-19 11:49:32 +00:00
[features]
stats = ["redis"]
2022-10-18 20:59:32 +00:00
[dependencies]
anyhow = "1.0.75"
2022-10-18 20:59:32 +00:00
dotenv = "0.15.0"
2023-03-01 14:42:30 +00:00
env_logger = "0.10.0"
hex = "0.4.3"
librespot = { version = "0.4.2", default-features = false }
2023-09-18 20:39:11 +00:00
log = "0.4.20"
protobuf = "2.28.0"
2023-09-19 11:49:32 +00:00
redis = { version = "0.23.3", optional = true }
2023-09-18 20:39:11 +00:00
reqwest = "0.11.20"
2022-10-18 20:59:32 +00:00
samplerate = "0.2.4"
2023-09-18 20:39:11 +00:00
serde = "1.0.188"
serde_json = "1.0.107"
serenity = { version = "0.11.6", features = ["framework", "cache", "standard_framework"], default-features = false }
2023-04-18 08:03:25 +00:00
songbird = "0.3.2"
2023-09-18 20:39:11 +00:00
thiserror = "1.0.48"
time = "0.3.28"
tokio = { version = "1.32.0", features = ["rt", "full"] }
zerocopy = "0.7.5"
[profile.release]
opt-level = 3
lto = true