diff options
author | Florian Klink <flokli@flokli.de> | 2023-09-05T14·08+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-09-05T15·19+0000 |
commit | 7bd3c42c747498dea657e0ed26ed5ec2a9eddda3 (patch) | |
tree | c4e4800c3c3e11a600e6d2893d9149f69a85f0ee /tvix/Cargo.nix | |
parent | e187a7bcb18ade669e276473b277edcd01f1babb (diff) |
chore(tvix/store): drop walkdir workaround for symlinks at root r/6553
https://github.com/BurntSushi/walkdir/pull/170 got merged, meaning we don't need to keep our own logic in here anymore. Our test cases already cover this. Change-Id: Ied3043ee651c8aafa10271c1e1ca5d460fb6c0b8 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9269 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'tvix/Cargo.nix')
-rw-r--r-- | tvix/Cargo.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/Cargo.nix b/tvix/Cargo.nix index 2ca478167ea6..750dee2bb284 100644 --- a/tvix/Cargo.nix +++ b/tvix/Cargo.nix @@ -8658,9 +8658,9 @@ rec { }; "walkdir" = rec { crateName = "walkdir"; - version = "2.3.3"; + version = "2.4.0"; edition = "2018"; - sha256 = "16768hy32kcvghq7v4ci8llfjvdiwrwg6sj9nzcdiisnv9699prn"; + sha256 = "1vjl9fmfc4v8k9ald23qrpcbyb8dl1ynyq8d516cm537r1yqa7fp"; authors = [ "Andrew Gallant <jamslam@gmail.com>" ]; |