瀏覽代碼

Fix building without default features

Hendrik Sollich 9 年之前
父節點
當前提交
c2d42e7d84
共有 1 個文件被更改,包括 1 次插入1 次删除
  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 {