From 0b160ebe71bfdaa0e85e323818c804f901416e47 Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Sun, 5 Feb 2023 18:20:26 -0600 Subject: [PATCH] Drop lazy_static from Cargo.toml This should have been included as part of the previous commit, mea culpa. --- fish-rust/Cargo.lock | 1 - fish-rust/Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/fish-rust/Cargo.lock b/fish-rust/Cargo.lock index ccd735abc..87084289d 100644 --- a/fish-rust/Cargo.lock +++ b/fish-rust/Cargo.lock @@ -353,7 +353,6 @@ dependencies = [ "cxx-gen", "errno", "inventory", - "lazy_static", "libc", "miette", "nix", diff --git a/fish-rust/Cargo.toml b/fish-rust/Cargo.toml index aa74d6b3a..df8206419 100644 --- a/fish-rust/Cargo.toml +++ b/fish-rust/Cargo.toml @@ -11,7 +11,6 @@ autocxx = "0.23.1" cxx = "1.0" errno = "0.2.8" inventory = { version = "0.3.3", optional = true} -lazy_static = "1.4.0" libc = "0.2.137" nix = { version = "0.25.0", default-features = false, features = [] } num-traits = "0.2.15"