about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorJosh Triplett <josh@joshtriplett.org>2025-08-14 18:02:39 -0700
committerJosh Triplett <josh@joshtriplett.org>2025-08-14 20:55:08 -0700
commit56b33cd5fa0eb2814f94f5fc636775ac70d10b0e (patch)
treefe616dce4190f6c1cf74f77fa695ed21b9a8972b /src/bootstrap
parentffdc40f30ab3ed1b4b1b7e5b2c877f21fe4e38ef (diff)
downloadrust-56b33cd5fa0eb2814f94f5fc636775ac70d10b0e.tar.gz
rust-56b33cd5fa0eb2814f94f5fc636775ac70d10b0e.zip
bootstrap: Remove dependency on xattr
Extracting the Rust tarballs doesn't require this.
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/Cargo.lock15
-rw-r--r--src/bootstrap/Cargo.toml2
2 files changed, 3 insertions, 14 deletions
diff --git a/src/bootstrap/Cargo.lock b/src/bootstrap/Cargo.lock
index e5f95b87273..be29e77e572 100644
--- a/src/bootstrap/Cargo.lock
+++ b/src/bootstrap/Cargo.lock
@@ -747,13 +747,12 @@ dependencies = [
 
 [[package]]
 name = "tar"
-version = "0.4.43"
+version = "0.4.44"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c65998313f8e17d0d553d28f91a0df93e4dbbbf770279c7bc21ca0f09ea1a1f6"
+checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
 dependencies = [
  "filetime",
  "libc",
- "xattr",
 ]
 
 [[package]]
@@ -1136,16 +1135,6 @@ dependencies = [
 ]
 
 [[package]]
-name = "xattr"
-version = "1.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
-dependencies = [
- "libc",
- "rustix",
-]
-
-[[package]]
 name = "xz2"
 version = "0.1.7"
 source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/src/bootstrap/Cargo.toml b/src/bootstrap/Cargo.toml
index 60c3548e16d..cd5a60187e5 100644
--- a/src/bootstrap/Cargo.toml
+++ b/src/bootstrap/Cargo.toml
@@ -50,7 +50,7 @@ serde = "1.0"
 serde_derive = "1.0"
 serde_json = "1.0"
 sha2 = "0.10"
-tar = "0.4"
+tar = { version = "0.4.44", default-features = false }
 termcolor = "1.4"
 toml = "0.5"
 walkdir = "2.4"