Skip to content

Commit 8622c81

Browse files
committed
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]: rust-lang/rust#111076
1 parent 616fe13 commit 8622c81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

patches/0029-stdlib-Disable-f16-and-f128-in-compiler-builtins.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ index 7165c3e48af..968552ad435 100644
1515
edition = "2021"
1616

1717
[dependencies]
18-
core = { path = "../core" }
18+
core = { path = "../core", public = true }
1919
-compiler_builtins = { version = "=0.1.146", features = ['rustc-dep-of-std'] }
2020
+compiler_builtins = { version = "=0.1.146", features = ['rustc-dep-of-std', 'no-f16-f128'] }
2121

0 commit comments

Comments
 (0)