From 73500c90814d10a2ddb1b7c47f166c5090cf7390 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 36447c49..186cc7a7 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 1bed6b7f..bc087d60 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"