From d2b0c6002be28138ebcced74737158c6bfd335b8 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 21 Oct 2025 17:49:29 -0400 Subject: [PATCH] Switch to fork of `async-tar` (#40828) This PR switches to our own fork of `async-tar`. Release Notes: - N/A --- Cargo.lock | 3 +-- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 25a1dc103c941dfa4953613aa6a77d88cae337b6..b4cf2cb2aa2d0fb396e19e7ec375d53d244a64d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1336,8 +1336,7 @@ dependencies = [ [[package]] name = "async-tar" version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a42f905d4f623faf634bbd1e001e84e0efc24694afa64be9ad239bf6ca49e1f8" +source = "git+https://github.com/zed-industries/async-tar?rev=8af312477196311c9ea4097f2a22022f6d609bf6#8af312477196311c9ea4097f2a22022f6d609bf6" dependencies = [ "async-std", "filetime", diff --git a/Cargo.toml b/Cargo.toml index 3e4d3d18483583dd592df38deac4ed7b4e6dfee8..d5d8d813c325fe24954123e4f5182d8f40a9b3d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -457,7 +457,7 @@ async-dispatcher = "0.1" async-fs = "2.1" async-pipe = { git = "https://github.com/zed-industries/async-pipe-rs", rev = "82d00a04211cf4e1236029aa03e6b6ce2a74c553" } async-recursion = "1.0.0" -async-tar = "0.5.0" +async-tar = { git = "https://github.com/zed-industries/async-tar", rev = "8af312477196311c9ea4097f2a22022f6d609bf6" } async-task = "4.7" async-trait = "0.1" async-tungstenite = "0.29.1"