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-10-21 15:19:18 +0300
committerAndrew Gallant <jamslam@gmail.com>2017-10-21 15:19:18 +0300
commita9f41405c0fac03d0119c6cbfc38443040cd53ea (patch)
treed38b8d81f7b5bf6b637c3c3600fc3f4e91863abf
parent99fe05638dd0039d35bbe45f739b75a0594bd574 (diff)
deps: remove winapi and kernel322.0.0
These are extraneous at this point. The Windows specific logic is now encapsulated in the same-file crate.
-rw-r--r--Cargo.toml4
-rw-r--r--src/lib.rs4
2 files changed, 0 insertions, 8 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 298b41d..56e5f1b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -19,10 +19,6 @@ appveyor = { repository = "BurntSushi/walkdir" }
[dependencies]
same-file = "1"
-[target.'cfg(windows)'.dependencies]
-kernel32-sys = "0.2"
-winapi = "0.2"
-
[dev-dependencies]
docopt = "0.8"
quickcheck = { version = "0.4", default-features = false }
diff --git a/src/lib.rs b/src/lib.rs
index d7e2d71..ebb0252 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -106,15 +106,11 @@ for entry in walker.filter_entry(|e| !is_hidden(e)) {
#![doc(html_root_url = "https://docs.rs/walkdir/2.0.0")]
#![deny(missing_docs)]
-#[cfg(windows)]
-extern crate kernel32;
#[cfg(test)]
extern crate quickcheck;
#[cfg(test)]
extern crate rand;
extern crate same_file;
-#[cfg(windows)]
-extern crate winapi;
use std::cmp::{Ordering, min};
use std::error;