From 78cc860b4b5afbbf609c623e408bf67134082668 Mon Sep 17 00:00:00 2001 From: konsumlamm Date: Thu, 11 Jan 2024 00:03:49 +0100 Subject: [PATCH] [ns2-stat] Move `serde_json` to dev-dependencies --- ns2-stat/Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ns2-stat/Cargo.toml b/ns2-stat/Cargo.toml index ce34b82..24b5c20 100644 --- a/ns2-stat/Cargo.toml +++ b/ns2-stat/Cargo.toml @@ -8,5 +8,7 @@ license = "MIT" [dependencies] serde = { version = "1.0", features = ["derive"] } -serde_json = "1.0" serde_repr = "0.1" + +[dev-dependencies] +serde_json = "1.0"