spoticord/Cargo.toml

28 lines
684 B
TOML
Raw Normal View History

2022-10-18 20:59:32 +00:00
[package]
name = "spoticord"
2022-10-31 21:46:34 +00:00
version = "2.0.0-beta"
2022-10-18 20:59:32 +00:00
edition = "2021"
2022-10-31 21:46:34 +00:00
[[bin]]
name = "spoticord"
path = "src/main.rs"
2022-10-18 20:59:32 +00:00
[dependencies]
console-subscriber = "0.1.8"
2022-10-18 20:59:32 +00:00
dotenv = "0.15.0"
env_logger = "0.9.3"
2022-10-18 20:59:32 +00:00
ipc-channel = { version = "0.16.0", features = ["async"] }
librespot = { version = "0.4.2", default-features = false }
2022-10-18 20:59:32 +00:00
log = "0.4.17"
2022-10-31 21:46:34 +00:00
redis = "0.22.1"
reqwest = "0.11.12"
2022-10-18 20:59:32 +00:00
samplerate = "0.2.4"
serde = "1.0.147"
serde_json = "1.0.87"
2023-01-02 18:19:03 +00:00
serenity = { version = "0.11.5", features = ["framework", "cache", "standard_framework"], default-features = false }
2022-10-18 20:59:32 +00:00
songbird = "0.3.0"
thiserror = "1.0.37"
2023-01-02 18:08:45 +00:00
time = "0.3.17"
tokio = { version = "1.21.2", features = ["rt", "full"] }
2022-10-18 20:59:32 +00:00
zerocopy = "0.6.1"