Skip to content

Commit 4313281

Browse files
authoredMay 10, 2024
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.
2 parents 7e4f608 + 39159a3 commit 4313281

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed
 

Diff for: ‎Cargo.lock

+1-10
Original file line numberDiff line numberDiff line change
@@ -2760,7 +2760,7 @@ dependencies = [
27602760
"tabled",
27612761
"tar",
27622762
"tempfile",
2763-
"xz",
2763+
"xz2",
27642764
"zip",
27652765
]
27662766

@@ -6586,15 +6586,6 @@ dependencies = [
65866586
"rustix",
65876587
]
65886588

6589-
[[package]]
6590-
name = "xz"
6591-
version = "0.1.0"
6592-
source = "registry+https://github.com/rust-lang/crates.io-index"
6593-
checksum = "3c887690ff2a2e233e8e49633461521f98ec57fbff9d59a884c9a4f04ec1da34"
6594-
dependencies = [
6595-
"xz2",
6596-
]
6597-
65986589
[[package]]
65996590
name = "xz2"
66006591
version = "0.1.7"

Diff for: ‎src/tools/opt-dist/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ camino = "1"
1616
reqwest = { version = "0.11", features = ["blocking"] }
1717
zip = { version = "0.6", default-features = false, features = ["deflate"] }
1818
tar = "0.4"
19-
xz = "0.1"
19+
xz = { version = "0.1", package = "xz2" }
2020
serde = { version = "1", features = ["derive"] }
2121
serde_json = "1"
2222
glob = "0.3"

0 commit comments

Comments
 (0)
Please sign in to comment.