BurntSushi / walkdir

Rust library for walking directories recursively.
The Unlicense
1.21k stars 106 forks source link

MSRV should be 1.40 #153

Open lemmih opened 2 years ago

lemmih commented 2 years ago

Hi,

Line 109 in src/lib.rs uses cfg(doctest) which didn't stabilize until Rust version 1.40.

fogti commented 2 years ago

If the MSRV is bumped, the following work-around could be dropped as well: https://github.com/BurntSushi/walkdir/blob/abf3a15887758e0af54ebca827c7b6f8b311cb45/src/dent.rs#L179-L191