diff --git a/Cargo.lock b/Cargo.lock index 39fb32f1..31d6e933 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3619,8 +3619,8 @@ dependencies = [ "bitflags 2.10.0", "dashmap", "serde", - "twilight-model", - "twilight-util", + "twilight-model 0.16.0", + "twilight-util 0.16.0", ] [[package]] @@ -3641,7 +3641,7 @@ dependencies = [ "tracing", "twilight-gateway-queue", "twilight-http", - "twilight-model", + "twilight-model 0.16.0", ] [[package]] @@ -3675,8 +3675,8 @@ dependencies = [ "tokio", "tracing", "twilight-http-ratelimiting", - "twilight-model", - "twilight-validate", + "twilight-model 0.16.0", + "twilight-validate 0.16.0", ] [[package]] @@ -3696,7 +3696,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f04837fa6d36de8c1446dd314095bcdc59a7c8021bf0dbf1dd0a846f1c146244" dependencies = [ "twilight-interactions-derive", - "twilight-model", + "twilight-model 0.16.0", ] [[package]] @@ -3723,14 +3723,36 @@ dependencies = [ "time", ] +[[package]] +name = "twilight-model" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "416247a86048c1909954c95c64ca4c7fbbcb44c36e9cbed8c008e7e40988f610" +dependencies = [ + "bitflags 2.10.0", + "serde", + "serde-value", + "serde_repr", + "time", +] + [[package]] name = "twilight-util" version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5777d71286611c1639021f5f6e6b40300eb8da278449ac1cf6da01c94053425" dependencies = [ - "twilight-model", - "twilight-validate", + "twilight-model 0.16.0", +] + +[[package]] +name = "twilight-util" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e71de79d48ce27aba1f591b10c84677f1317489c2ea154d9b8ed01efa8bceb53" +dependencies = [ + "twilight-model 0.17.0", + "twilight-validate 0.17.0", ] [[package]] @@ -3739,7 +3761,16 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49f8d106028ede53708526364b03318bbf846babe146e3ff9e39821a0ca25ff4" dependencies = [ - "twilight-model", + "twilight-model 0.16.0", +] + +[[package]] +name = "twilight-validate" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6a27472e023e3841d1c4e4e20253ed796e8440aada8b5205b8544f1172e661d" +dependencies = [ + "twilight-model 0.17.0", ] [[package]] @@ -4485,7 +4516,7 @@ dependencies = [ "tokio", "tracing", "tracing-subscriber", - "twilight-model", + "twilight-model 0.16.0", "valk-utils", "xpd-common", "xpd-database", @@ -4500,7 +4531,7 @@ dependencies = [ "strum_macros", "twilight-cache-inmemory", "twilight-gateway", - "twilight-model", + "twilight-model 0.16.0", ] [[package]] @@ -4512,7 +4543,7 @@ dependencies = [ "sqlx", "tokio-stream", "tracing", - "twilight-model", + "twilight-model 0.16.0", "xpd-common", ] @@ -4530,8 +4561,8 @@ dependencies = [ "twilight-cache-inmemory", "twilight-gateway", "twilight-http", - "twilight-model", - "twilight-validate", + "twilight-model 0.16.0", + "twilight-validate 0.16.0", "vss", "xpd-common", "xpd-database", @@ -4554,7 +4585,7 @@ dependencies = [ "twilight-cache-inmemory", "twilight-gateway", "twilight-http", - "twilight-model", + "twilight-model 0.16.0", "xpd-common", "xpd-database", "xpd-util", @@ -4583,7 +4614,7 @@ dependencies = [ "tokio", "tracing-subscriber", "twilight-http", - "twilight-model", + "twilight-model 0.16.0", "valk-utils", "xpd-common", "xpd-slash-defs", @@ -4610,8 +4641,8 @@ dependencies = [ "twilight-gateway", "twilight-http", "twilight-interactions", - "twilight-model", - "twilight-util", + "twilight-model 0.16.0", + "twilight-util 0.17.0", "xpd-common", "xpd-database", "xpd-rank-card", @@ -4624,8 +4655,8 @@ name = "xpd-slash-defs" version = "0.1.0" dependencies = [ "twilight-interactions", - "twilight-model", - "twilight-validate", + "twilight-model 0.16.0", + "twilight-validate 0.16.0", "xpd-common", "xpd-rank-card", ] @@ -4637,7 +4668,7 @@ dependencies = [ "thiserror 2.0.17", "tracing", "twilight-cache-inmemory", - "twilight-model", + "twilight-model 0.16.0", "xpd-common", ] diff --git a/xpd-slash/Cargo.toml b/xpd-slash/Cargo.toml index cbcba52c..ac048e25 100644 --- a/xpd-slash/Cargo.toml +++ b/xpd-slash/Cargo.toml @@ -15,7 +15,7 @@ keywords = ["discord-bot", "mee6"] twilight-http = { version = "0.16", features = ["hickory", "rustls-native-roots", "rustls-aws_lc_rs"], default-features = false } twilight-cache-inmemory = { version = "0.16", features = ["permission-calculator"] } twilight-gateway = { version = "0.16", default-features = false } -twilight-util = { version = "0.16", features = ["builder"] } +twilight-util = { version = "0.17", features = ["builder"] } twilight-interactions = "0.16" twilight-model = "0.16"