31 lines
729 B
TOML
31 lines
729 B
TOML
![]() |
[package]
|
||
|
name = "spoticord"
|
||
|
version = "2.0.0-indev"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[profile.release]
|
||
|
lto = true
|
||
|
codegen-units = 1
|
||
|
strip = true
|
||
|
opt-level = "z"
|
||
|
|
||
|
[dependencies]
|
||
|
chrono = "0.4.22"
|
||
|
dotenv = "0.15.0"
|
||
|
env_logger = "0.9.0"
|
||
|
ipc-channel = { version = "0.16.0", features = ["async"] }
|
||
|
librespot = { version = "0.4.2", default-features = false }
|
||
|
log = "0.4.17"
|
||
|
reqwest = "0.11.11"
|
||
|
samplerate = "0.2.4"
|
||
|
serde = "1.0.144"
|
||
|
serde_json = "1.0.85"
|
||
|
serenity = { version = "0.11.5", features = ["voice"] }
|
||
|
shell-words = "1.1.0"
|
||
|
songbird = "0.3.0"
|
||
|
thiserror = "1.0.33"
|
||
|
tokio = { version = "1.20.1", features = ["rt", "full"] }
|
||
|
zerocopy = "0.6.1"
|