summaryrefslogtreecommitdiffstats
path: root/src/path
diff options
context:
space:
mode:
Diffstat (limited to 'src/path')
-rw-r--r--src/path/mod.rs1
-rw-r--r--src/path/parser.rs2
2 files changed, 1 insertions, 2 deletions
diff --git a/src/path/mod.rs b/src/path/mod.rs
index ac28400..c6de2a7 100644
--- a/src/path/mod.rs
+++ b/src/path/mod.rs
@@ -1,5 +1,4 @@
use error::*;
-use nom::error::ErrorKind;
use std::collections::HashMap;
use std::str::FromStr;
use value::{Value, ValueKind};
diff --git a/src/path/parser.rs b/src/path/parser.rs
index 7a40cb5..6c873cb 100644
--- a/src/path/parser.rs
+++ b/src/path/parser.rs
@@ -8,7 +8,7 @@ use nom::{
sequence::{delimited, pair, preceded},
Err, IResult,
};
-use std::str::{from_utf8, FromStr};
+use std::str::FromStr;
fn raw_ident(i: &str) -> IResult<&str, String> {
map(