Преглед изворни кода

Apparently std::os::unix::osStrExt is now std::os::unix::ffi::OsStrExt.

Eirik Schwenke пре 11 година
родитељ
комит
30a48e05c2
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/dir.rs

+ 1 - 1
src/dir.rs

@@ -84,7 +84,7 @@ impl Git {
     /// Discover a Git repository on or above this directory, scanning it for
     /// the files' statuses if one is found.
     fn scan(path: &Path) -> Result<Git, git2::Error> {
-        use std::os::unix::OsStrExt;
+        use std::os::unix::ffi::OsStrExt;
         use std::ffi::AsOsStr;
 
         // TODO: libgit2-rs uses the new Path module, but exa still uses the