summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHendrik Sollich <hendrik@hoodie.de>2016-05-03 00:03:22 +0200
committerHendrik Sollich <hendrik@hoodie.de>2016-05-03 00:03:22 +0200
commitc2d42e7d84a477edb1fce1aea8dfa15884bf6b99 (patch)
treea402b34ae6be7241960d53c1f0df501a6b13094e
parent299289d76f4c02c15b3c3cabd4cea674892a8f6c (diff)
Fix building without default features
-rw-r--r--src/fs/feature/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fs/feature/mod.rs b/src/fs/feature/mod.rs
index 9fe56f1..72db8e1 100644
--- a/src/fs/feature/mod.rs
+++ b/src/fs/feature/mod.rs
@@ -8,7 +8,7 @@ pub mod xattr;
#[cfg(not(feature="git"))] pub struct Git;
#[cfg(not(feature="git"))] use std::path::Path;
-#[cfg(not(feature="git"))] use file::fields;
+#[cfg(not(feature="git"))] use fs::fields;
#[cfg(not(feature="git"))]
impl Git {