Update dependencies

This commit is contained in:
jude 2024-12-04 21:29:33 +00:00
parent 14913deb3a
commit 1298aa2eb7
3 changed files with 718 additions and 614 deletions

1318
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -8,20 +8,18 @@ edition = "2018"
[dependencies]
songbird = { version = "0.4", features = ["builtin-queue"] }
poise = "0.6.1-rc1"
sqlx = { version = "0.7.3", default-features = false, features = ["runtime-tokio-rustls", "macros", "mysql", "bigdecimal", "migrate"] }
poise = "0.6.1"
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"] }
lazy_static = "1.4"
reqwest = "0.12"
env_logger = "0.11"
regex = "1.10"
log = "0.4"
serde_json = "1.0"
dashmap = "6.0"
serde = "1.0"
dotenv = "0.15.0"
prometheus = { version = "0.13.3", optional = true }
axum = { version = "0.7.2", optional = true }
dotenv = "0.15"
prometheus = { version = "0.13", optional = true }
axum = { version = "0.7", optional = true }
[dependencies.symphonia]
version = "0.5"

View File

@ -123,7 +123,6 @@ pub async fn listener(ctx: &Context, event: &FullEvent, data: &Data) -> Result<(
ActionRowComponent::Button(button) => match &button
.data
{
ButtonKind::Link { .. } => {}
ButtonKind::NonLink { custom_id, style } => row
.push(
CreateButton::new(
@ -148,6 +147,7 @@ pub async fn listener(ctx: &Context, event: &FullEvent, data: &Data) -> Result<(
)
.style(*style),
),
_ => {}
},
_ => {}
}