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:
authorAron Griffis <aron@scampersand.com>2018-08-23 03:18:48 +0300
committerAndrew Gallant <jamslam@gmail.com>2018-08-23 03:46:56 +0300
commit9a29218ca6d26c9320a393d0c990778e7eb6981f (patch)
tree9f607c20171e2d988ef124780ea75051bcfbcae6 /Cargo.toml
parentddbbe48d56228fb8c5fc7c0e509da45fd7aa9efe (diff)
walkdir: add option to stay on same file system
This commit includes a new method, `same_file_system`, which when enabled, will cause walkdir to only descend into directories that are on the same file system as the root path. Closes #8, Closes #107
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index c2ab187..f4acb33 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -20,7 +20,7 @@ same-file = "1"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
-features = ["std", "winnt"]
+features = ["std", "fileapi", "winbase", "winnt"]
[dev-dependencies]
docopt = "1"