diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-05-10 07:30:20 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-10 07:30:20 +0200 |
| commit | 43132819145d3acca7bf57cfda965a3c6737553b (patch) | |
| tree | 40dbbe6166cb8f0d9b0c0b7107cf755939ae567d /src | |
| parent | 7e4f6082cec194826d8d06743244ac6b12b7a2bf (diff) | |
| parent | 39159a36291d1e9fe87441a054dbed77f3859057 (diff) | |
| download | rust-43132819145d3acca7bf57cfda965a3c6737553b.tar.gz rust-43132819145d3acca7bf57cfda965a3c6737553b.zip | |
Rollup merge of #124927 - klensy:xz3, r=Kobzol
opt-dist: use xz2 instead of xz crate xz crate consist of simple reexport of xz2 crate. Why? Idk. Totally not a backdoor.
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/opt-dist/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/opt-dist/Cargo.toml b/src/tools/opt-dist/Cargo.toml index 4cb6acb394c..1ff410e723a 100644 --- a/src/tools/opt-dist/Cargo.toml +++ b/src/tools/opt-dist/Cargo.toml @@ -16,7 +16,7 @@ camino = "1" reqwest = { version = "0.11", features = ["blocking"] } zip = { version = "0.6", default-features = false, features = ["deflate"] } tar = "0.4" -xz = "0.1" +xz = { version = "0.1", package = "xz2" } serde = { version = "1", features = ["derive"] } serde_json = "1" glob = "0.3" |
