diff --git a/Cargo.toml b/Cargo.toml index 29ed9d8..a1391a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "json_dotpath" -version = "0.1.0" +version = "0.1.1" authors = ["Ondřej Hruška "] edition = "2018" license = "MIT" diff --git a/src/lib.rs b/src/lib.rs index 57e605d..02be46b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,6 +4,7 @@ use serde_json::{Map, Value}; use std::cmp::Ordering; use std::mem; +#[cfg(test)] #[macro_use] extern crate serde_derive; /// Access and mutate nested JSON elements by dotted paths @@ -542,7 +543,6 @@ mod tests { use crate::DotPaths; use serde_json::json; use serde_json::Value; - use serde::{Serialize,Deserialize}; #[test] fn get_scalar_with_empty_path() {