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>2018-08-22 04:30:51 +0300
committerAndrew Gallant <jamslam@gmail.com>2018-08-22 04:30:51 +0300
commit7033d12ded2132000a3b6d4f5d49fe36eda9dc1b (patch)
tree717ea19241f6a8a1d390a45fff598f3ab2a38652
parentdbe269c9af80a538f833292b9fa463efcd4e539f (diff)
deps: update docopt to 1.0
-rw-r--r--Cargo.toml3
-rw-r--r--src/lib.rs1
2 files changed, 1 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 8ce8dee..25ba632 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,5 @@
[package]
name = "walkdir"
-# remember to update html_root_url
version = "2.2.0" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = "Recursively walk a directory."
@@ -24,7 +23,7 @@ version = "0.3"
features = ["std", "winnt"]
[dev-dependencies]
-docopt = "0.8"
+docopt = "1"
quickcheck = { version = "0.6", default-features = false }
rand = "0.4"
serde = "1"
diff --git a/src/lib.rs b/src/lib.rs
index b65ba48..0180818 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -103,7 +103,6 @@ for entry in walker.filter_entry(|e| !is_hidden(e)) {
[`filter_entry`]: struct.IntoIter.html#method.filter_entry
*/
-#![doc(html_root_url = "https://docs.rs/walkdir/2.0.0")]
#![deny(missing_docs)]
#[cfg(test)]