Use public-dependencies in all sysroot crates

In [1], most dependencies of `std` and other sysroot crates were marked
private, but this did not happen for `alloc` and `test`. Update these
here, marking public standard library crates as the only non-private
dependencies.

[1]: https://github.com/rust-lang/rust/pull/111076
This commit is contained in:
Trevor Gross 2025-01-28 22:25:23 +00:00
parent cb1d076d42
commit 8c1b49d5e9
4 changed files with 13 additions and 7 deletions

View file

@ -15,7 +15,7 @@ index 7165c3e48af..968552ad435 100644
edition = "2021"
[dependencies]
core = { path = "../core" }
core = { path = "../core", public = true }
-compiler_builtins = { version = "=0.1.146", features = ['rustc-dep-of-std'] }
+compiler_builtins = { version = "=0.1.146", features = ['rustc-dep-of-std', 'no-f16-f128'] }