From bf8e5a167bca1704dc28a410e257f232e6fb81aa Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Wed, 13 Sep 2023 18:07:24 +0200 Subject: [PATCH] chore: Upgrade walkdir (#7336) ## Summary The only commit is [api: add follow_root_links() option to WalkDir](https://github.com/BurntSushi/walkdir/commit/dcc527d8326fae4272b66bb55f433a302a8cad6f) whicih addsa new option wheter `walkdir` should follow a root symlink or not. The new option defaults to `true` which is the same as before. ## Test Plan `cargo test` --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 36a0d490b6..a12d6f0438 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3380,9 +3380,9 @@ dependencies = [ [[package]] name = "walkdir" -version = "2.3.3" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" +checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" dependencies = [ "same-file", "winapi-util",