diff --git a/Cargo.lock b/Cargo.lock index 44db85b..3c544cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -252,6 +252,12 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" +[[package]] +name = "base64" +version = "0.21.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" + [[package]] name = "bitflags" version = "1.3.2" @@ -362,9 +368,9 @@ dependencies = [ [[package]] name = "command_attr" -version = "0.4.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d999d4e7731150ee14aee8f619c7a9aa9a4385bca0606c4fa95aa2f36a05d9a" +checksum = "07b787d19b9806dd4c9c34b2b4147d1a61d6120d93ee289521ab9b0294d198e4" dependencies = [ "proc-macro2", "quote", @@ -2458,7 +2464,7 @@ version = "0.11.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b75aa69a3f06bbcc66ede33af2af253c6f7a86b1ca0033f60c580a27074fbf92" dependencies = [ - "base64", + "base64 0.13.0", "bytes", "encoding_rs", "futures-core", @@ -2558,7 +2564,7 @@ version = "0.19.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7" dependencies = [ - "base64", + "base64 0.13.0", "log", "ring", "sct 0.6.1", @@ -2583,7 +2589,7 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7522c9de787ff061458fe9a829dc790a3f5b22dc571694fc5883f448b94d9a9" dependencies = [ - "base64", + "base64 0.13.0", ] [[package]] @@ -2917,13 +2923,13 @@ dependencies = [ [[package]] name = "serenity" -version = "0.11.5" +version = "0.11.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82fd5e7b5858ad96e99d440138f34f5b98e1b959ebcd3a1036203b30e78eb788" +checksum = "7a7a89cef23483fc9d4caf2df41e6d3928e18aada84c56abd237439d929622c6" dependencies = [ "async-trait", "async-tungstenite", - "base64", + "base64 0.21.5", "bitflags", "bytes", "cfg-if 1.0.0", @@ -3131,7 +3137,7 @@ checksum = "aec89bfaca8f7737439bad16d52b07f1ccd0730520d3bf6ae9d069fe4b641fb1" dependencies = [ "ahash", "atoi", - "base64", + "base64 0.13.0", "bitflags", "byteorder", "bytes", @@ -3312,7 +3318,7 @@ dependencies = [ name = "sushii-model" version = "0.1.0" dependencies = [ - "base64", + "base64 0.13.0", "chrono", "dashmap 4.0.2", "humantime", @@ -3656,7 +3662,7 @@ version = "0.17.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e27992fd6a8c29ee7eef28fc78349aa244134e10ad447ce3b9f0ac0ed0fa4ce0" dependencies = [ - "base64", + "base64 0.13.0", "byteorder", "bytes", "http", diff --git a/sushii-2/Cargo.toml b/sushii-2/Cargo.toml index 5ca419f..70e7002 100644 --- a/sushii-2/Cargo.toml +++ b/sushii-2/Cargo.toml @@ -80,7 +80,7 @@ features = [ [dependencies.serenity] # git = "https://github.com/serenity-rs/serenity" #rev = "11918e74ab2eba7d61f94d5b5776d5546913adcd" -version = "0.11.5" +version = "0.11.7" # path = "../../serenity" features = ["collector", "unstable_discord_api", "chrono"] diff --git a/sushii-model/Cargo.toml b/sushii-model/Cargo.toml index 5bbbf8b..bb37674 100644 --- a/sushii-model/Cargo.toml +++ b/sushii-model/Cargo.toml @@ -30,10 +30,19 @@ version = "1.0" features = ["macros", "rt-multi-thread", "time", "signal"] [dependencies.sqlx] -version= "0.5.2" +version = "0.5.2" default-features = false -features = [ "runtime-tokio-rustls", "macros", "postgres", "json", "chrono", "offline", "migrate", "decimal" ] +features = [ + "runtime-tokio-rustls", + "macros", + "postgres", + "json", + "chrono", + "offline", + "migrate", + "decimal", +] [dependencies.serenity] -version = "0.11.5" +version = "0.11.7" features = ["collector", "unstable_discord_api", "chrono"]