This commit is contained in:
2019-12-28 18:39:14 +01:00
parent 00270d811b
commit 104f03101d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "json_dotpath"
version = "0.1.0"
version = "0.1.1"
authors = ["Ondřej Hruška <ondra@ondrovo.com>"]
edition = "2018"
license = "MIT"
+1 -1
View File
@@ -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() {