Disable optimizations temporarily for identifying an issue
parent
84626172f4
commit
854724b389
File diff suppressed because it is too large
Load Diff
19
Cargo.toml
19
Cargo.toml
|
@ -7,27 +7,20 @@ edition = "2021"
|
||||||
name = "spoticord"
|
name = "spoticord"
|
||||||
path = "src/main.rs"
|
path = "src/main.rs"
|
||||||
|
|
||||||
[profile.release]
|
|
||||||
lto = true
|
|
||||||
codegen-units = 1
|
|
||||||
strip = true
|
|
||||||
opt-level = "z"
|
|
||||||
panic = "abort"
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
chrono = "0.4.22"
|
chrono = "0.4.22"
|
||||||
dotenv = "0.15.0"
|
dotenv = "0.15.0"
|
||||||
env_logger = "0.9.0"
|
env_logger = "0.9.3"
|
||||||
ipc-channel = { version = "0.16.0", features = ["async"] }
|
ipc-channel = { version = "0.16.0", features = ["async"] }
|
||||||
librespot = { version = "0.4.2", default-features = false }
|
librespot = { version = "0.4.2", default-features = false }
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
redis = "0.22.1"
|
redis = "0.22.1"
|
||||||
reqwest = "0.11.11"
|
reqwest = "0.11.12"
|
||||||
samplerate = "0.2.4"
|
samplerate = "0.2.4"
|
||||||
serde = "1.0.144"
|
serde = "1.0.147"
|
||||||
serde_json = "1.0.85"
|
serde_json = "1.0.87"
|
||||||
serenity = { version = "0.11.5", features = ["voice"] }
|
serenity = { version = "0.11.5", features = ["voice"] }
|
||||||
songbird = "0.3.0"
|
songbird = "0.3.0"
|
||||||
thiserror = "1.0.33"
|
thiserror = "1.0.37"
|
||||||
tokio = { version = "1.20.1", features = ["rt", "full"] }
|
tokio = { version = "1.21.2", features = ["rt", "full"] }
|
||||||
zerocopy = "0.6.1"
|
zerocopy = "0.6.1"
|
||||||
|
|
Loading…
Reference in New Issue