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>2020-01-11 20:16:57 +0300
committerAndrew Gallant <jamslam@gmail.com>2020-01-11 20:23:58 +0300
commit8e757b15d1bcaf1694a0eadaf242c1008b08aacd (patch)
tree4996bb9e32f029f9db05f7dd6c672c799fe55470
parent7c7013259eb9db400b3e5c7bc60330ca08068826 (diff)
readme: document MSRV policy
-rw-r--r--README.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/README.md b/README.md
index e15415f..1bfc52c 100644
--- a/README.md
+++ b/README.md
@@ -86,18 +86,18 @@ for entry in walker.filter_entry(|e| !is_hidden(e)) {
}
```
-### Motivation
+### Minimum Rust version policy
-`std::fs` has an unstable `walk_dir` implementation that needed some design
-work. I started off on that task, but it quickly became apparent that walking
-a directory recursively is quite complex and may not be a good fit for `std`
-right away.
+This crate's minimum supported `rustc` version is `1.23.0`.
-This should at least resolve most or all of the issues reported here (and then
-some):
+The current policy is that the minimum Rust version required to use this crate
+can be increased in minor version updates. For example, if `crate 1.0` requires
+Rust 1.20.0, then `crate 1.0.z` for all values of `z` will also require Rust
+1.20.0 or newer. However, `crate 1.y` for `y > 0` may require a newer minimum
+version of Rust.
-* https://github.com/rust-lang/rust/issues/27707
-* https://github.com/rust-lang/rust/issues/23715
+In general, this crate will be conservative with respect to the minimum
+supported version of Rust.
### Performance