diff --git a/Cargo.lock b/Cargo.lock index d114528..a90e412 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -211,7 +211,7 @@ dependencies = [ "twilight-cache-inmemory", "twilight-gateway", "twilight-http", - "twilight-model", + "twilight-model 0.16.0", "twilight-util", ] @@ -1160,7 +1160,7 @@ dependencies = [ "bitflags", "dashmap", "serde", - "twilight-model", + "twilight-model 0.16.0", ] [[package]] @@ -1181,7 +1181,7 @@ dependencies = [ "tracing", "twilight-gateway-queue", "twilight-http", - "twilight-model", + "twilight-model 0.16.0", ] [[package]] @@ -1214,8 +1214,8 @@ dependencies = [ "tokio", "tracing", "twilight-http-ratelimiting", - "twilight-model", - "twilight-validate", + "twilight-model 0.16.0", + "twilight-validate 0.16.0", ] [[package]] @@ -1241,14 +1241,27 @@ dependencies = [ "time", ] +[[package]] +name = "twilight-model" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2bf6bb7b93a7f765d89b3388cc710c0ae16104579e06bb30ea1ee6bd41420a8b" +dependencies = [ + "bitflags", + "serde", + "serde-value", + "serde_repr", + "time", +] + [[package]] name = "twilight-util" -version = "0.16.0" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5777d71286611c1639021f5f6e6b40300eb8da278449ac1cf6da01c94053425" +checksum = "e71de79d48ce27aba1f591b10c84677f1317489c2ea154d9b8ed01efa8bceb53" dependencies = [ - "twilight-model", - "twilight-validate", + "twilight-model 0.17.1", + "twilight-validate 0.17.0", ] [[package]] @@ -1257,7 +1270,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.1", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 47ffc46..65cc738 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,4 +15,4 @@ twilight-cache-inmemory = "0.16.0" twilight-gateway = "0.16.0" twilight-http = "0.16.0" twilight-model = "0.16.0" -twilight-util = { version = "0.16.0", features = ["builder", "snowflake"] } +twilight-util = { version = "0.17.0", features = ["builder", "snowflake"] }