From 61e22e000a105177e81787927b519d2e2b3796c2 Mon Sep 17 00:00:00 2001 From: Ivan Towlson Date: Wed, 25 Sep 2024 09:54:41 +1200 Subject: [PATCH] Use official async-tar Signed-off-by: itowlson --- Cargo.lock | 5 +++-- crates/oci/Cargo.toml | 3 +-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index caaf4ad99..b17fa663a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -455,8 +455,9 @@ dependencies = [ [[package]] name = "async-tar" -version = "0.4.2" -source = "git+https://github.com/vdice/async-tar?rev=71e037f9652971e7a55b412a8e47a37b06f9c29d#71e037f9652971e7a55b412a8e47a37b06f9c29d" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a42f905d4f623faf634bbd1e001e84e0efc24694afa64be9ad239bf6ca49e1f8" dependencies = [ "async-std", "filetime", diff --git a/crates/oci/Cargo.toml b/crates/oci/Cargo.toml index af13f2519..1b7f5de95 100644 --- a/crates/oci/Cargo.toml +++ b/crates/oci/Cargo.toml @@ -7,8 +7,7 @@ edition = { workspace = true } [dependencies] anyhow = { workspace = true } async-compression = { version = "0.4", features = ["gzip", "tokio"] } -# Fork with nested async-std dependency bumped to satisfy Windows build; branch/revision is protected -async-tar = { git = "https://github.com/vdice/async-tar", rev = "71e037f9652971e7a55b412a8e47a37b06f9c29d" } +async-tar = "0.5" base64 = "0.22" chrono = "0.4" # Fork with updated auth to support ACR login