2022-10-18 22:59:32 +02:00
|
|
|
[package]
|
|
|
|
name = "spoticord"
|
2023-03-03 10:03:57 +01:00
|
|
|
version = "2.0.0-pre"
|
2022-10-18 22:59:32 +02:00
|
|
|
edition = "2021"
|
2023-01-27 14:23:47 +00:00
|
|
|
rust-version = "1.64.0"
|
2022-10-18 22:59:32 +02:00
|
|
|
|
2022-10-31 22:46:34 +01:00
|
|
|
[[bin]]
|
|
|
|
name = "spoticord"
|
|
|
|
path = "src/main.rs"
|
2022-10-18 22:59:32 +02:00
|
|
|
|
2023-03-03 10:03:57 +01:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
metrics = ["lazy_static", "prometheus"]
|
|
|
|
|
2022-10-18 22:59:32 +02:00
|
|
|
[dependencies]
|
|
|
|
dotenv = "0.15.0"
|
2023-03-01 15:42:30 +01:00
|
|
|
env_logger = "0.10.0"
|
2022-10-18 22:59:32 +02:00
|
|
|
ipc-channel = { version = "0.16.0", features = ["async"] }
|
2023-03-03 10:03:57 +01:00
|
|
|
lazy_static = { version = "1.4.0", optional = true }
|
2023-01-27 14:11:54 +00:00
|
|
|
librespot = { version = "0.4.2", default-features = false }
|
2022-10-18 22:59:32 +02:00
|
|
|
log = "0.4.17"
|
2023-03-03 10:03:57 +01:00
|
|
|
prometheus = { version = "0.13.3", optional = true, features = ["push", "process"] }
|
2023-03-01 15:42:30 +01:00
|
|
|
reqwest = "0.11.14"
|
2022-10-18 22:59:32 +02:00
|
|
|
samplerate = "0.2.4"
|
2023-03-01 15:42:30 +01:00
|
|
|
serde = "1.0.152"
|
|
|
|
serde_json = "1.0.93"
|
2023-01-02 18:19:03 +00:00
|
|
|
serenity = { version = "0.11.5", features = ["framework", "cache", "standard_framework"], default-features = false }
|
2023-04-08 23:02:45 +02:00
|
|
|
songbird = { git = "https://github.com/SpoticordMusic/songbird" }
|
2023-03-01 15:42:30 +01:00
|
|
|
thiserror = "1.0.38"
|
|
|
|
time = "0.3.20"
|
|
|
|
tokio = { version = "1.25.0", features = ["rt", "full"] }
|
2022-10-18 22:59:32 +02:00
|
|
|
zerocopy = "0.6.1"
|