From 3913558410953d2ffd6846a404f6d1d4a0ab94ef Mon Sep 17 00:00:00 2001 From: RunasSudo Date: Sun, 25 May 2025 01:20:30 +1000 Subject: [PATCH] Remove unused dependency from Cargo.toml --- Cargo.lock | 29 ----------------------------- Cargo.toml | 1 - 2 files changed, 30 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 202ed01..267c59a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -342,21 +342,6 @@ dependencies = [ "percent-encoding", ] -[[package]] -name = "futures" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" -dependencies = [ - "futures-channel", - "futures-core", - "futures-executor", - "futures-io", - "futures-sink", - "futures-task", - "futures-util", -] - [[package]] name = "futures-channel" version = "0.3.31" @@ -401,17 +386,6 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" -[[package]] -name = "futures-macro" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "futures-sink" version = "0.3.31" @@ -430,10 +404,8 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" dependencies = [ - "futures-channel", "futures-core", "futures-io", - "futures-macro", "futures-sink", "futures-task", "memchr", @@ -709,7 +681,6 @@ dependencies = [ "dyn-clone", "dyn-eq", "dyn-hash", - "futures", "indexmap", "sqlx", "tokio", diff --git a/Cargo.toml b/Cargo.toml index ff5cf66..b15bbe8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,6 @@ downcast-rs = "2.0.1" dyn-clone = "1.0.19" dyn-eq = "0.1.3" dyn-hash = "0.2.2" -futures = "0.3.31" indexmap = "2.9.0" sqlx = { version = "0.8", features = [ "runtime-tokio", "sqlite" ] } tokio = { version = "1.45.0", features = ["full"] }