spoticord/Cargo.toml

33 lines
865 B
TOML
Raw Normal View History

2022-10-18 20:59:32 +00:00
[package]
name = "spoticord"
2023-03-03 09:03:57 +00:00
version = "2.0.0-pre"
2022-10-18 20:59:32 +00:00
edition = "2021"
2023-01-27 14:23:47 +00:00
rust-version = "1.64.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-03-03 09:03:57 +00:00
[features]
default = []
metrics = ["lazy_static", "prometheus"]
2022-10-18 20:59:32 +00:00
[dependencies]
dotenv = "0.15.0"
2023-03-01 14:42:30 +00:00
env_logger = "0.10.0"
2022-10-18 20:59:32 +00:00
ipc-channel = { version = "0.16.0", features = ["async"] }
2023-03-03 09:03:57 +00:00
lazy_static = { version = "1.4.0", optional = true }
librespot = { version = "0.4.2", default-features = false }
2022-10-18 20:59:32 +00:00
log = "0.4.17"
2023-03-03 09:03:57 +00:00
prometheus = { version = "0.13.3", optional = true, features = ["push", "process"] }
2023-03-01 14:42:30 +00:00
reqwest = "0.11.14"
2022-10-18 20:59:32 +00:00
samplerate = "0.2.4"
2023-03-01 14:42:30 +00: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 }
2022-10-18 20:59:32 +00:00
songbird = "0.3.0"
2023-03-01 14:42:30 +00:00
thiserror = "1.0.38"
time = "0.3.20"
tokio = { version = "1.25.0", features = ["rt", "full"] }
2022-10-18 20:59:32 +00:00
zerocopy = "0.6.1"