mirror of
https://github.com/eRgo35/lyra.git
synced 2026-02-04 04:16:11 +01:00
fix: deps broken
This commit is contained in:
24
Cargo.lock
generated
24
Cargo.lock
generated
@@ -90,32 +90,13 @@ version = "1.1.2"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "audiopus"
|
|
||||||
version = "0.2.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "3743519567e9135cf6f9f1a509851cb0c8e4cb9d66feb286668afb1923bec458"
|
|
||||||
dependencies = [
|
|
||||||
"audiopus_sys 0.1.8",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "audiopus"
|
name = "audiopus"
|
||||||
version = "0.3.0-rc.0"
|
version = "0.3.0-rc.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "ab55eb0e56d7c6de3d59f544e5db122d7725ec33be6a276ee8241f3be6473955"
|
checksum = "ab55eb0e56d7c6de3d59f544e5db122d7725ec33be6a276ee8241f3be6473955"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"audiopus_sys 0.2.2",
|
"audiopus_sys",
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "audiopus_sys"
|
|
||||||
version = "0.1.8"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "927791de46f70facea982dbfaf19719a41ce6064443403be631a85de6a58fff9"
|
|
||||||
dependencies = [
|
|
||||||
"log",
|
|
||||||
"pkg-config",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -1344,7 +1325,6 @@ dependencies = [
|
|||||||
name = "lyra"
|
name = "lyra"
|
||||||
version = "0.10.0"
|
version = "0.10.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"audiopus 0.2.0",
|
|
||||||
"dotenv",
|
"dotenv",
|
||||||
"json",
|
"json",
|
||||||
"lib-spotify-parser",
|
"lib-spotify-parser",
|
||||||
@@ -2825,7 +2805,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "338dd182f9f084f583c4c0db38588e28a34778ecec288208cf0b61c378ac90d1"
|
checksum = "338dd182f9f084f583c4c0db38588e28a34778ecec288208cf0b61c378ac90d1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"audiopus 0.3.0-rc.0",
|
"audiopus",
|
||||||
"byteorder",
|
"byteorder",
|
||||||
"bytes",
|
"bytes",
|
||||||
"crypto_secretbox",
|
"crypto_secretbox",
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ keywords = ["discord", "bot", "rust", "music", "featureful"]
|
|||||||
lib-spotify-parser = { path = "./libs/spotify-parser" }
|
lib-spotify-parser = { path = "./libs/spotify-parser" }
|
||||||
dotenv = "0.15.0"
|
dotenv = "0.15.0"
|
||||||
json = "0.12.4"
|
json = "0.12.4"
|
||||||
|
openssl = { version = "0.10.66", features = ["vendored"] }
|
||||||
owoify = "0.1.5"
|
owoify = "0.1.5"
|
||||||
poise = { default-features = true, version = "0.6.1" }
|
poise = { default-features = true, version = "0.6.1" }
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
@@ -32,7 +33,6 @@ serenity = { default-features = true, features = [
|
|||||||
"http",
|
"http",
|
||||||
"rustls_backend",
|
"rustls_backend",
|
||||||
], version = "0.12" }
|
], version = "0.12" }
|
||||||
|
|
||||||
symphonia = { version = "0.5.4", features = [
|
symphonia = { version = "0.5.4", features = [
|
||||||
"aac",
|
"aac",
|
||||||
"adpcm",
|
"adpcm",
|
||||||
@@ -47,8 +47,6 @@ tracing-futures = "0.2.5"
|
|||||||
tracing-subscriber = "0.3.18"
|
tracing-subscriber = "0.3.18"
|
||||||
url = "2.5.2"
|
url = "2.5.2"
|
||||||
once_cell = "1.19.0"
|
once_cell = "1.19.0"
|
||||||
openssl = { version = "0.10.66", features = ["vendored"] }
|
|
||||||
audiopus = "0.2.0"
|
|
||||||
|
|
||||||
[patch.crates-io.serenity-voice-model]
|
[patch.crates-io.serenity-voice-model]
|
||||||
git = "https://github.com/serenity-rs/serenity"
|
git = "https://github.com/serenity-rs/serenity"
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<img height="256" alt="Lyra" src="assets/lyra-256.png" />
|
<img height="256" alt="Lyra" src="assets/lyra-256.png" />
|
||||||
</a>
|
</a>
|
||||||
<br />
|
<br />
|
||||||
Lyra: a discord music bot written in Rust :crab:
|
Lyra: a discord music bot written in rust :crab:
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
Lyra is an open source, discord music bot written in Rust.
|
Lyra is an open source, discord music bot written in Rust.
|
||||||
|
|||||||
Reference in New Issue
Block a user