about summary refs log tree commit diff
path: root/library/stdarch/crates/std_detect
diff options
context:
space:
mode:
authorTrevor Gross <tmgross@umich.edu>2025-06-04 00:13:13 +0000
committerAmanieu d'Antras <amanieu@gmail.com>2025-06-09 23:11:45 +0000
commitf0b25641fb1ce49182bbddc17ae14bd9b3854412 (patch)
treecefdbbaf6cdb6b8cd2d5b7a878643ded37c555bd /library/stdarch/crates/std_detect
parent852d853a033e57480a33a055b5e5cf37ec0ecba2 (diff)
downloadrust-f0b25641fb1ce49182bbddc17ae14bd9b3854412.tar.gz
rust-f0b25641fb1ce49182bbddc17ae14bd9b3854412.zip
Remove `compiler-builtins` from `rustc-dep-of-std` dependencies
Since [1], this will come automatically from `rustc-std-workspace-core`
and the crates.io dependency should no longer be specified.

[1]: https://github.com/rust-lang/rust/pull/141993
Diffstat (limited to 'library/stdarch/crates/std_detect')
-rw-r--r--library/stdarch/crates/std_detect/Cargo.toml2
1 files changed, 0 insertions, 2 deletions
diff --git a/library/stdarch/crates/std_detect/Cargo.toml b/library/stdarch/crates/std_detect/Cargo.toml
index 368423065a2..f990e724125 100644
--- a/library/stdarch/crates/std_detect/Cargo.toml
+++ b/library/stdarch/crates/std_detect/Cargo.toml
@@ -25,7 +25,6 @@ cfg-if = "1.0.0"
 
 # When built as part of libstd
 core = { version = "1.0.0", optional = true, package = "rustc-std-workspace-core" }
-compiler_builtins = { version = "0.1.2", optional = true }
 alloc = { version = "1.0.0", optional = true, package = "rustc-std-workspace-alloc" }
 
 [target.'cfg(not(windows))'.dependencies]
@@ -38,6 +37,5 @@ std_detect_dlsym_getauxval = [ "libc" ]
 std_detect_env_override = [ "libc" ]
 rustc-dep-of-std = [
     "core",
-    "compiler_builtins",
     "alloc",
 ]