Explorar el Código

Merge pull request #111 from hoodie/master

Fix building without default features
Benjamin Sago hace 9 años
padre
commit
069908adb6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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 {