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/store/Cargo.toml | |
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/store/Cargo.toml')
-rw-r--r-- | tvix/store/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/Cargo.toml b/tvix/store/Cargo.toml index cd7b3a9b3de9..0dcada31a61e 100644 --- a/tvix/store/Cargo.toml +++ b/tvix/store/Cargo.toml @@ -21,7 +21,7 @@ tokio = { version = "1.28.0", features = ["rt-multi-thread", "net"] } tonic = "0.8.2" tracing = "0.1.37" tracing-subscriber = { version = "0.3.16", features = ["json"] } -walkdir = "2.3.2" +walkdir = "2.4.0" tokio-util = { version = "0.7.8", features = ["io", "io-util"] } tower = "0.4.13" futures = "0.3.28" |