From 62b9c76d693813c08b12836f2d03f7cf217d0d8d Mon Sep 17 00:00:00 2001 From: atlas Date: Sat, 15 Aug 2026 22:06:39 +0200 Subject: [PATCH] chore(swarm-controller): drop reqwest, dead since the queue connect moved Its only user was queue.rs, which is now swarm-queue-client. An unused Cargo.toml dependency is not a build error, which is exactly why it survives: the next reader takes it as still needed and copies it forward. --- Cargo.lock | 1 - swarm-controller/Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 694c8a94..98d416df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4561,7 +4561,6 @@ dependencies = [ "async-nats", "axum", "futures-util", - "reqwest 0.13.1", "serde", "serde_json", "swarm-queue-client", diff --git a/swarm-controller/Cargo.toml b/swarm-controller/Cargo.toml index e5eed511..c5012025 100644 --- a/swarm-controller/Cargo.toml +++ b/swarm-controller/Cargo.toml @@ -18,7 +18,6 @@ anyhow.workspace = true async-nats = { workspace = true, features = ["kv"] } axum.workspace = true futures-util.workspace = true -reqwest.workspace = true serde.workspace = true serde_json.workspace = true # The queue connect (token mint + auth callback + reconnect) is shared with