summaryrefslogtreecommitdiffstats
path: root/src/helpers/toml.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/helpers/toml.rs')
-rw-r--r--src/helpers/toml.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/helpers/toml.rs b/src/helpers/toml.rs
index be17783..4d23057 100644
--- a/src/helpers/toml.rs
+++ b/src/helpers/toml.rs
@@ -4,10 +4,10 @@ use std::{
path::Path,
};
-use tomlcrate;
+use crate::tomlcrate;
-use data::Data;
-use Result;
+use crate::data::Data;
+use crate::Result;
/// Attempts to deserialize a Data struct from a string
pub fn from_str(s: &str) -> Result<Data> {