summaryrefslogtreecommitdiffstats
path: root/src/file/format/yaml.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/file/format/yaml.rs')
-rw-r--r--src/file/format/yaml.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/file/format/yaml.rs b/src/file/format/yaml.rs
index 18716f6..2526395 100644
--- a/src/file/format/yaml.rs
+++ b/src/file/format/yaml.rs
@@ -2,9 +2,11 @@ use std::collections::HashMap;
use std::error::Error;
use std::fmt;
use std::mem;
-use value::{Value, ValueKind};
+
use yaml_rust as yaml;
+use crate::value::{Value, ValueKind};
+
pub fn parse(
uri: Option<&String>,
text: &str,