Trying to reduce the amount of deps

main
DaXcess 2023-09-26 10:09:58 +02:00
parent ea1f8773e7
commit e4752444cf
No known key found for this signature in database
GPG Key ID: CF78CC72F0FD5EAD
2 changed files with 3 additions and 11 deletions

8
Cargo.lock generated
View File

@ -1727,8 +1727,6 @@ dependencies = [
"itoa",
"percent-encoding",
"ryu",
"sha1_smol",
"socket2 0.4.9",
"url",
]
@ -2139,12 +2137,6 @@ dependencies = [
"digest 0.10.7",
]
[[package]]
name = "sha1_smol"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
[[package]]
name = "shannon"
version = "0.2.0"

View File

@ -20,13 +20,13 @@ lazy_static = "1.4.0"
librespot = { version = "0.4.2", default-features = false }
log = "0.4.20"
protobuf = "2.28.0"
redis = { version = "0.23.3", optional = true }
redis = { version = "0.23.3", optional = true, default-features = false }
reqwest = { version = "0.11.20", default-features = false }
samplerate = "0.2.4"
serde = "1.0.188"
serde_json = "1.0.107"
serenity = { version = "0.11.6", features = ["framework", "cache", "standard_framework"], default-features = false }
songbird = "0.3.2"
serenity = { version = "0.11.6", features = ["framework", "cache", "standard_framework", "rustls_backend", "gateway"], default-features = false }
songbird = { version = "0.3.2", features = ["driver", "serenity-rustls"], default-features = false }
thiserror = "1.0.48"
tokio = { version = "1.32.0", features = ["rt", "full"] }
zerocopy = "0.7.5"