From 557ef1ec7978f6cd2870580320e63061cb13cb83 Mon Sep 17 00:00:00 2001 From: David Mak Date: Fri, 13 Oct 2023 16:09:46 +0800 Subject: [PATCH] core: Remove lazy_static from dependencies --- Cargo.lock | 1 - nac3core/Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 36447c4..186cc7a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -673,7 +673,6 @@ dependencies = [ "inkwell", "insta", "itertools 0.11.0", - "lazy_static", "nac3parser", "parking_lot", "rayon", diff --git a/nac3core/Cargo.toml b/nac3core/Cargo.toml index 1bed6b7..bc087d6 100644 --- a/nac3core/Cargo.toml +++ b/nac3core/Cargo.toml @@ -10,7 +10,6 @@ crossbeam = "0.8" parking_lot = "0.12" rayon = "1.5" nac3parser = { path = "../nac3parser" } -lazy_static = "1.4" [dependencies.inkwell] version = "0.2"