From cc9454bf9edb8c56772686e360e8b7303e535384 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 05:15:36 +0000 Subject: [PATCH] Remove unused `lazy_static` dependency This commit removes the `lazy_static` dependency from: - `implants/lib/eldritchv2/eldritch-core` - `implants/imixv2` - `implants/Cargo.toml` (workspace) The dependency was found to be unused in the codebase. Tests pass after removal. --- implants/Cargo.toml | 1 - implants/imixv2/Cargo.toml | 1 - implants/lib/eldritchv2/eldritch-core/Cargo.toml | 1 - 3 files changed, 3 deletions(-) diff --git a/implants/Cargo.toml b/implants/Cargo.toml index f7b1c7c5e..05898b451 100644 --- a/implants/Cargo.toml +++ b/implants/Cargo.toml @@ -132,7 +132,6 @@ x25519-dalek = "2.0.1" lru = "0.16.0" crossterm = "0.27" futures = "0.3" -lazy_static = "1.4.0" [profile.release] diff --git a/implants/imixv2/Cargo.toml b/implants/imixv2/Cargo.toml index fea115a0e..eb75a0077 100644 --- a/implants/imixv2/Cargo.toml +++ b/implants/imixv2/Cargo.toml @@ -14,7 +14,6 @@ tokio = { workspace = true, features = ["rt-multi-thread", "macros", "sync", "ti anyhow = { workspace = true } log = { workspace = true } futures = { workspace = true } -lazy_static = { workspace = true } crossterm = { workspace = true } prost-types = { workspace = true } pretty_env_logger = { workspace = true } diff --git a/implants/lib/eldritchv2/eldritch-core/Cargo.toml b/implants/lib/eldritchv2/eldritch-core/Cargo.toml index 7810ab469..b73dc7697 100644 --- a/implants/lib/eldritchv2/eldritch-core/Cargo.toml +++ b/implants/lib/eldritchv2/eldritch-core/Cargo.toml @@ -12,7 +12,6 @@ no_std = [] std = [] [dependencies] -lazy_static = { version = "1.5.0", features = ["spin_no_std"] } spin = { version = "0.10.0", features = ["mutex", "spin_mutex", "rwlock"] } libm = "0.2.15"