From 7e7e9ad8248b232fba1ce8b9d3ee2982836a2889 Mon Sep 17 00:00:00 2001 From: minneelyyyy Date: Mon, 9 Dec 2024 19:50:32 -0500 Subject: [PATCH] fix comp: undeclared dependency --- Cargo.lock | 3 +++ Cargo.toml | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 7d2be5c..5b35a14 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -208,9 +208,12 @@ dependencies = [ "dotenv", "hex_color", "lamm", + "once_cell", "poise", "rand", "regex", + "serde", + "serde_json", "sqlx", "tokio", ] diff --git a/Cargo.toml b/Cargo.toml index a47f01f..fad5b8f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,4 +12,7 @@ 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" ] } -hex_color = "3" \ No newline at end of file +hex_color = "3" +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0.133" +once_cell = "1.20.2" \ No newline at end of file