2022-10-18 22:59:32 +02:00
|
|
|
[package]
|
|
|
|
name = "spoticord"
|
2023-09-18 14:02:59 +02:00
|
|
|
version = "2.1.0"
|
2022-10-18 22:59:32 +02:00
|
|
|
edition = "2021"
|
2023-05-19 19:22:53 +02:00
|
|
|
rust-version = "1.65.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
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
dotenv = "0.15.0"
|
2023-03-01 15:42:30 +01:00
|
|
|
env_logger = "0.10.0"
|
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 }
|
2023-09-18 22:39:11 +02:00
|
|
|
log = "0.4.20"
|
|
|
|
reqwest = "0.11.20"
|
2022-10-18 22:59:32 +02:00
|
|
|
samplerate = "0.2.4"
|
2023-09-18 22:39:11 +02: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 10:03:25 +02:00
|
|
|
songbird = "0.3.2"
|
2023-09-18 22:39:11 +02: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
|
|
|
|
debug = true
|