Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/walkdir.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2017-01-09 03:11:27 +0300
committerAndrew Gallant <jamslam@gmail.com>2017-01-09 03:12:48 +0300
commit88566c4eb477505fd15169ee5399fe14dc238894 (patch)
treebdbf8f8917b4413b7eae90a80cd8204283742343 /Cargo.toml
parentc2bbd8e796c25d288ff922ec61d900b6d67b4173 (diff)
Use new same-file crate.
This replaces the homegrown `is_same_file` implementation with a reusable implementation from an external crate.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 0eaa6bd..9652c69 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -10,6 +10,9 @@ readme = "README.md"
keywords = ["directory", "recursive", "walk", "iterator"]
license = "Unlicense/MIT"
+[dependencies]
+same-file = "0.1"
+
[target.'cfg(windows)'.dependencies]
kernel32-sys = "0.2"
winapi = "0.2"