From 471fc61fb449ca985e1ac94cfb378b7d30d82326 Mon Sep 17 00:00:00 2001 From: Xnoe Date: Fri, 23 Sep 2022 17:13:26 +0100 Subject: [PATCH] Remove redundant dependencies. --- Cargo.lock | 55 ------------------------------------------------------ Cargo.toml | 4 +--- 2 files changed, 1 insertion(+), 58 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8a4a507..c0512e3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -11,31 +11,11 @@ dependencies = [ "memchr", ] -[[package]] -name = "autocfg" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" - -[[package]] -name = "bitflags" -version = "1.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" - -[[package]] -name = "cfg-if" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" - [[package]] name = "dhcprs" version = "0.1.1" dependencies = [ "eui48", - "libc", - "nix", ] [[package]] @@ -48,47 +28,12 @@ dependencies = [ "rustc-serialize", ] -[[package]] -name = "libc" -version = "0.2.133" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0f80d65747a3e43d1596c7c5492d95d5edddaabd45a7fcdb02b95f644164966" - [[package]] name = "memchr" version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" -[[package]] -name = "memoffset" -version = "0.6.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" -dependencies = [ - "autocfg", -] - -[[package]] -name = "nix" -version = "0.25.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e322c04a9e3440c327fca7b6c8a63e6890a32fa2ad689db972425f07e0d22abb" -dependencies = [ - "autocfg", - "bitflags", - "cfg-if", - "libc", - "memoffset", - "pin-utils", -] - -[[package]] -name = "pin-utils" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" - [[package]] name = "regex" version = "1.6.0" diff --git a/Cargo.toml b/Cargo.toml index 18de18b..2f6e887 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,6 +13,4 @@ name = "dhcprs" path = "src/lib.rs" [dependencies] -nix = "0.25.0" -eui48 = "1.1.0" -libc = "0.2.133" \ No newline at end of file +eui48 = "1.1.0" \ No newline at end of file