Skip to content

Commit 358ddf1

Browse files
committed
make sure libc and compiler_builtins depend on core
1 parent 5bfbf16 commit 358ddf1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rust-app/zephyr-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ core = { version = '1.0.0', optional = true, package = 'rustc-std-workspace-core
1111
compiler_builtins = { version = '0.1.2', optional = true }
1212

1313
[features]
14-
rustc-dep-of-std = ['core', 'compiler_builtins']
14+
rustc-dep-of-std = ['core', 'compiler_builtins/rustc-dep-of-std', 'libc/rustc-dep-of-std']

rust-app/zephyr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ derive_more = { version = '0.14.1', default-features = false, features = ['no_st
1515

1616
[features]
1717
defaults = [ 'rustc-dep-of-std' ]
18-
rustc-dep-of-std = ['core', 'compiler_builtins', 'zephyr-sys/rustc-dep-of-std']
18+
rustc-dep-of-std = ['core', 'compiler_builtins/rustc-dep-of-std', 'zephyr-sys/rustc-dep-of-std', 'libc/rustc-dep-of-std']
1919
have_std = []

0 commit comments

Comments
 (0)