Browse Source

Merge pull request #111 from hoodie/master

Fix building without default features
Benjamin Sago 9 years ago
parent
commit
069908adb6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/fs/feature/mod.rs

+ 1 - 1
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 {