Update Rust crate twilight-util to 0.16
Some checks failed
tests / fmt (push) Successful in 1m14s
tests / build (push) Failing after 1m30s
tests / clippy (push) Failing after 1m25s
tests / pre-commit (push) Failing after 1m24s
tests / test (push) Failing after 1m29s

This commit is contained in:
2025-03-05 01:27:24 +00:00
parent de3262c072
commit 1124101121
2 changed files with 35 additions and 13 deletions

46
Cargo.lock generated
View File

@@ -1705,7 +1705,7 @@ dependencies = [
"twilight-cache-inmemory", "twilight-cache-inmemory",
"twilight-gateway", "twilight-gateway",
"twilight-http", "twilight-http",
"twilight-model", "twilight-model 0.15.4",
"twilight-standby", "twilight-standby",
"twilight-util", "twilight-util",
"url", "url",
@@ -2706,7 +2706,7 @@ dependencies = [
"tracing", "tracing",
"tracing-futures", "tracing-futures",
"twilight-gateway", "twilight-gateway",
"twilight-model", "twilight-model 0.15.4",
"typemap_rev", "typemap_rev",
"typenum", "typenum",
"url", "url",
@@ -3712,7 +3712,7 @@ dependencies = [
"bitflags 1.3.2", "bitflags 1.3.2",
"dashmap", "dashmap",
"serde", "serde",
"twilight-model", "twilight-model 0.15.4",
] ]
[[package]] [[package]]
@@ -3734,7 +3734,7 @@ dependencies = [
"tracing", "tracing",
"twilight-gateway-queue", "twilight-gateway-queue",
"twilight-http", "twilight-http",
"twilight-model", "twilight-model 0.15.4",
] ]
[[package]] [[package]]
@@ -3763,8 +3763,8 @@ dependencies = [
"tokio", "tokio",
"tracing", "tracing",
"twilight-http-ratelimiting", "twilight-http-ratelimiting",
"twilight-model", "twilight-model 0.15.4",
"twilight-validate", "twilight-validate 0.15.3",
] ]
[[package]] [[package]]
@@ -3792,6 +3792,19 @@ dependencies = [
"time", "time",
] ]
[[package]]
name = "twilight-model"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "191e2efa051dfbd9bed4c9f6bd3f5e007bda909c687a1db2760371a3d566617d"
dependencies = [
"bitflags 2.9.0",
"serde",
"serde-value",
"serde_repr",
"time",
]
[[package]] [[package]]
name = "twilight-standby" name = "twilight-standby"
version = "0.15.4" version = "0.15.4"
@@ -3802,17 +3815,17 @@ dependencies = [
"futures-util", "futures-util",
"tokio", "tokio",
"tracing", "tracing",
"twilight-model", "twilight-model 0.15.4",
] ]
[[package]] [[package]]
name = "twilight-util" name = "twilight-util"
version = "0.15.4" version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe3149347d8222e042a55deba80cd32f93f14770bbb845b8e4cfbd70a5062c56" checksum = "e5777d71286611c1639021f5f6e6b40300eb8da278449ac1cf6da01c94053425"
dependencies = [ dependencies = [
"twilight-model", "twilight-model 0.16.0",
"twilight-validate", "twilight-validate 0.16.0",
] ]
[[package]] [[package]]
@@ -3821,7 +3834,16 @@ version = "0.15.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3595d5ad595d8d3a97096a01899b53d3a8117ab16deda27526b315a1db815da4" checksum = "3595d5ad595d8d3a97096a01899b53d3a8117ab16deda27526b315a1db815da4"
dependencies = [ dependencies = [
"twilight-model", "twilight-model 0.15.4",
]
[[package]]
name = "twilight-validate"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49f8d106028ede53708526364b03318bbf846babe146e3ff9e39821a0ca25ff4"
dependencies = [
"twilight-model 0.16.0",
] ]
[[package]] [[package]]

View File

@@ -20,7 +20,7 @@ twilight-http = "0.15"
twilight-model = "0.15" twilight-model = "0.15"
twilight-standby = "0.15" twilight-standby = "0.15"
twilight-cache-inmemory = "0.15" twilight-cache-inmemory = "0.15"
twilight-util = { version = "0.15", features=["builder"] } twilight-util = { version = "0.16", features=["builder"] }
dotenv = "0.15.0" dotenv = "0.15.0"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"