Fix tar by temporarily using a fork (#358)

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
Jiahao XU 2022-09-10 16:06:22 +10:00 committed by GitHub
parent 0c6687455f
commit a94d83f0d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 13 deletions

24
Cargo.lock generated
View file

@ -80,6 +80,7 @@ name = "binstall"
version = "0.0.0"
dependencies = [
"async-trait",
"binstall-tar",
"bytes",
"bzip2",
"cargo_toml",
@ -108,7 +109,6 @@ dependencies = [
"serde_json",
"strum",
"strum_macros",
"tar",
"tempfile",
"thiserror",
"tinytemplate",
@ -121,6 +121,17 @@ dependencies = [
"zstd",
]
[[package]]
name = "binstall-tar"
version = "0.4.39"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "01db907e07c37309ea816c183ffe548daaa66ef640a291408f232d6ca4089dbb"
dependencies = [
"filetime",
"libc",
"xattr",
]
[[package]]
name = "bitflags"
version = "1.3.2"
@ -1819,17 +1830,6 @@ dependencies = [
"unicode-ident",
]
[[package]]
name = "tar"
version = "0.4.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6"
dependencies = [
"filetime",
"libc",
"xattr",
]
[[package]]
name = "tempfile"
version = "3.3.0"