mirror of
https://github.com/rust-lang/cargo
synced 2024-10-30 12:35:34 +00:00
Auto merge of #7874 - ehuss:update-tar, r=Eh2406
Update tar. Updates to the latest tar. rust-lang/rust is currently on 0.4.20. The change I'm most interested in is fixing the TarError cause/source, so that Cargo reports a better error message. Compare: ``` Caused by: failed to unpack `/…/registry/src/github.com-1ecc6299db9ec823/curl-sys-0.4.25/curl/docs/libcurl/libcurl-multi.3` ``` to the new version: ``` Caused by: failed to unpack `curl-sys-0.4.25/curl/docs/libcurl/libcurl-multi.3` into `/…/registry/src/github.com-1ecc6299db9ec823/curl-sys-0.4.25/curl/docs/libcurl/libcurl-multi.3` Caused by: No space left on device (os error 28) ```
This commit is contained in:
commit
23ce747f93
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ serde_ignored = "0.1.0"
|
|||
serde_json = { version = "1.0.30", features = ["raw_value"] }
|
||||
shell-escape = "0.1.4"
|
||||
strip-ansi-escapes = "0.1.0"
|
||||
tar = { version = "0.4.18", default-features = false }
|
||||
tar = { version = "0.4.26", default-features = false }
|
||||
tempfile = "3.0"
|
||||
termcolor = "1.0"
|
||||
toml = "0.5.3"
|
||||
|
|
Loading…
Reference in a new issue