From 46092add29cc7c42fc981257c150889d971ec7e4 Mon Sep 17 00:00:00 2001 From: Steffen Eiden Date: Tue, 16 Apr 2024 10:25:38 +0200 Subject: [PATCH] rust/pv_core: Fix lazy-static dev-dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit During the remove of mockito, lazy_static dependency was accidentally removed as well. Fix this by adding lazy-static as dev dependency again. Fixes: aba890007429 ("rust/pv_core: Remove mockito dependency") Signed-off-by: Steffen Eiden Signed-off-by: Jan Höppner --- rust/Cargo.lock | 1 + rust/pv_core/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 5794b757..f263c5f1 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -432,6 +432,7 @@ name = "pv_core" version = "1.0.0" dependencies = [ "byteorder", + "lazy_static", "libc", "log", "serde", diff --git a/rust/pv_core/Cargo.toml b/rust/pv_core/Cargo.toml index 18ca645b..76597c32 100644 --- a/rust/pv_core/Cargo.toml +++ b/rust/pv_core/Cargo.toml @@ -16,4 +16,5 @@ serde = { version = "1.0.139", features = ["derive"]} byteorder = "1.3" [dev-dependencies] +lazy_static = "1.4.0" serde_test = "1"