From e604bfc34cb63cfb48b5e912f6ff5dd9ff11c4ae Mon Sep 17 00:00:00 2001 From: JyJyJcr <82190170+JyJyJcr@users.noreply.github.com> Date: Sun, 7 Apr 2024 23:28:07 +0900 Subject: [PATCH] refactor: remove unused deps --- Cargo.lock | 7 ------- Cargo.toml | 3 --- nginx-sys/Cargo.toml | 2 -- 3 files changed, 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8285061..51078b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -568,7 +568,6 @@ name = "ngx" version = "0.5.0" dependencies = [ "nginx-sys", - "target-triple", ] [[package]] @@ -950,12 +949,6 @@ dependencies = [ "xattr", ] -[[package]] -name = "target-triple" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea67965c3f2666e59325eec14b6f0e296d27044051e65fc2a7d77ed3a3eff82d" - [[package]] name = "termcolor" version = "1.2.0" diff --git a/Cargo.toml b/Cargo.toml index f013af7..b14b786 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,6 +23,3 @@ nginx-sys = { path = "nginx-sys", version = "0.5.0"} [badges] maintenance = { status = "experimental" } - -[dev-dependencies] -target-triple = "0.1.2" diff --git a/nginx-sys/Cargo.toml b/nginx-sys/Cargo.toml index bd2d6ad..2fa8750 100644 --- a/nginx-sys/Cargo.toml +++ b/nginx-sys/Cargo.toml @@ -12,8 +12,6 @@ keywords = ["nginx", "ffi", "sys"] [lib] crate-type = ["staticlib", "rlib"] -[dependencies] - [build-dependencies] bindgen = "0.69.4" which = "6.0.0"