From 6dd0152938291ee7e8873095dc988db71fb653a2 Mon Sep 17 00:00:00 2001 From: Ryan Walters Date: Mon, 1 Sep 2025 12:46:39 -0500 Subject: [PATCH] chore: remove unused dependencies --- Cargo.lock | 2 -- Cargo.toml | 6 +++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a19f311..9c0bfc8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -598,11 +598,9 @@ dependencies = [ "bitflags 2.9.1", "circular-buffer", "glam 0.30.5", - "lazy_static", "libc", "micromap", "num-width", - "once_cell", "parking_lot", "pathfinding", "phf", diff --git a/Cargo.toml b/Cargo.toml index 2999cd7..f5bca87 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,16 +9,13 @@ edition = "2021" tracing = { version = "0.1.41", features = ["max_level_debug", "release_max_level_debug"]} tracing-error = "0.2.0" tracing-subscriber = {version = "0.3.17", features = ["env-filter"]} -lazy_static = "1.5.0" sdl2 = { version = "0.38.0", features = ["image", "ttf"] } spin_sleep = "1.3.2" rand = { version = "0.9.2", default-features = false, features = ["small_rng", "os_rng"] } pathfinding = "4.14" -once_cell = "1.21.3" thiserror = "2.0.14" anyhow = "1.0" glam = "0.30.5" -serde = { version = "1.0.219", features = ["derive"] } serde_json = "1.0.142" smallvec = "1.15.1" strum = "0.27.2" @@ -71,3 +68,6 @@ libc = "0.2.175" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" phf = { version = "0.12.1", features = ["macros"] } + +[package.metadata.cargo-machete] +ignored = ["phf"]