diff options
| author | David Mládek <david.mladek.cz@gmail.com> | 2025-07-12 23:07:41 +0200 |
|---|---|---|
| committer | David Mládek <david.mladek.cz@gmail.com> | 2025-07-15 15:44:26 +0200 |
| commit | d627e252ae5f1d282f3c2ca6c0a0e24154552e8a (patch) | |
| tree | 1f7bdb908f75e7a493dff214be995d4235b0036f | |
| parent | 8b868fa534a8b660a5b8051a5c883d4c15c5b70e (diff) | |
| download | rust-d627e252ae5f1d282f3c2ca6c0a0e24154552e8a.tar.gz rust-d627e252ae5f1d282f3c2ca6c0a0e24154552e8a.zip | |
make `std_detect` public dependency of `std`
| -rw-r--r-- | library/std/Cargo.toml | 2 |
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', ] } |
