Update for E2EE

This commit is contained in:
jude
2026-02-27 13:39:30 +00:00
parent 148dbb96a9
commit 3388fe43f8
4 changed files with 2175 additions and 961 deletions

4
.gitmodules vendored Normal file
View File

@@ -0,0 +1,4 @@
[submodule "vendor/serenity"]
path = vendor/serenity
url = https://github.com/serenity-rs/serenity.git
branch = next

3126
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -7,7 +7,7 @@ authors = ["jellywx <judesouthworth@pm.me>"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
songbird = { version = "0.4", features = ["builtin-queue"] } songbird = { git = "https://github.com/beerpsi-forks/songbird.git", branch = "davey", features = ["builtin-queue"] }
poise = "0.6.1" poise = "0.6.1"
sqlx = { version = "0.7", default-features = false, features = ["runtime-tokio-rustls", "macros", "mysql", "bigdecimal", "migrate"] } sqlx = { version = "0.7", default-features = false, features = ["runtime-tokio-rustls", "macros", "mysql", "bigdecimal", "migrate"] }
tokio = { version = "1", features = ["fs", "process", "io-util", "rt-multi-thread"] } tokio = { version = "1", features = ["fs", "process", "io-util", "rt-multi-thread"] }
@@ -21,6 +21,9 @@ dotenv = "0.15"
prometheus = { version = "0.13", optional = true } prometheus = { version = "0.13", optional = true }
axum = { version = "0.7", optional = true } axum = { version = "0.7", optional = true }
[patch."https://github.com/serenity-rs/serenity.git"]
serenity-voice-model = { path = "vendor/serenity/voice-model" }
[dependencies.symphonia] [dependencies.symphonia]
version = "0.5" version = "0.5"
features = ["ogg"] features = ["ogg"]

1
vendor/serenity vendored Submodule

Submodule vendor/serenity added at c4f417f196