summaryrefslogtreecommitdiffstats
path: root/src/file/format/toml.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/file/format/toml.rs')
-rw-r--r--src/file/format/toml.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/file/format/toml.rs b/src/file/format/toml.rs
index 409f73f..c5b7a7d 100644
--- a/src/file/format/toml.rs
+++ b/src/file/format/toml.rs
@@ -1,7 +1,9 @@
use std::collections::HashMap;
use std::error::Error;
+
use toml;
-use value::{Value, ValueKind};
+
+use crate::value::{Value, ValueKind};
pub fn parse(
uri: Option<&String>,