From eda11985d639fee35570e929931fee6787ec54ba Mon Sep 17 00:00:00 2001 From: minneelyyyy Date: Sun, 8 Dec 2024 01:09:02 -0500 Subject: [PATCH] forgot to push new dependencies --- Cargo.lock | 13 +++++++++++++ Cargo.toml | 4 +++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 2ef9921..67e8de1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -204,8 +204,10 @@ dependencies = [ name = "bot" version = "0.1.0" dependencies = [ + "chrono", "clap", "dotenv", + "hex_color", "lamm", "poise", "rand", @@ -292,8 +294,10 @@ checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" dependencies = [ "android-tzdata", "iana-time-zone", + "js-sys", "num-traits", "serde", + "wasm-bindgen", "windows-targets 0.52.6", ] @@ -882,6 +886,15 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" +[[package]] +name = "hex_color" +version = "3.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d37f101bf4c633f7ca2e4b5e136050314503dd198e78e325ea602c327c484ef0" +dependencies = [ + "rand", +] + [[package]] name = "hkdf" version = "0.12.4" diff --git a/Cargo.toml b/Cargo.toml index 2d8ced7..ee5f0f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,4 +11,6 @@ rand = "0.8.5" clap = { version = "4.5.20", features = ["derive"] } lamm = { git = "https://github.com/minneelyyyy/lamm", branch = "dev" } regex = "1.11.1" -sqlx = { version = "0.8", features = [ "runtime-tokio-native-tls", "postgres" ] } \ No newline at end of file +sqlx = { version = "0.8", features = [ "runtime-tokio-native-tls", "postgres" ] } +chrono = "0.4.38" +hex_color = "3" \ No newline at end of file