From fcecf379dc87da521ce9cccda4995bb18eb94950 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 480358bff1428404d28197df55b2566c098a373f..d116940e5de7968cba610eaf842c6bcdb334df77 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1185,8 +1185,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 f9eecd25cb11701bdc1f22d8b6d79cd2a572e296..9637569566e7d3ebc8035d7a93b6e35d2ef84b70 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -454,7 +454,7 @@ async-fs = "2.1" async-lock = "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.31.0"