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, 2 insertions, 2 deletions
diff --git a/src/file/format/yaml.rs b/src/file/format/yaml.rs
index 87240ac..5ec8ca6 100644
--- a/src/file/format/yaml.rs
+++ b/src/file/format/yaml.rs
@@ -1,10 +1,10 @@
-use yaml_rust as yaml;
use source::Source;
+use std::collections::HashMap;
use std::error::Error;
use std::fmt;
-use std::collections::HashMap;
use std::mem;
use value::{Value, ValueKind};
+use yaml_rust as yaml;
pub fn parse(
uri: Option<&String>,