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:
parent
cb1d076d42
commit
8c1b49d5e9
4 changed files with 13 additions and 7 deletions
|
@ -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'] }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue