about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Mládek <david.mladek.cz@gmail.com>2025-07-12 23:07:41 +0200
committerDavid Mládek <david.mladek.cz@gmail.com>2025-07-15 15:44:26 +0200
commitd627e252ae5f1d282f3c2ca6c0a0e24154552e8a (patch)
tree1f7bdb908f75e7a493dff214be995d4235b0036f
parent8b868fa534a8b660a5b8051a5c883d4c15c5b70e (diff)
downloadrust-d627e252ae5f1d282f3c2ca6c0a0e24154552e8a.tar.gz
rust-d627e252ae5f1d282f3c2ca6c0a0e24154552e8a.zip
make `std_detect` public dependency of `std`
-rw-r--r--library/std/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml
index 62ece4b6961..ca2fb2f49a3 100644
--- a/library/std/Cargo.toml
+++ b/library/std/Cargo.toml
@@ -23,7 +23,7 @@ unwind = { path = "../unwind" }
 hashbrown = { version = "0.15", default-features = false, features = [
     'rustc-dep-of-std',
 ] }
-std_detect = { path = "../stdarch/crates/std_detect", default-features = false, features = [
+std_detect = { path = "../stdarch/crates/std_detect", public = true, default-features = false, features = [
     'rustc-dep-of-std',
 ] }