Skip to content

Commit 2756dc7

Browse files
tgross35alexcrichton
authored andcommitted
Remove compiler-builtins from rustc-dep-of-std dependencies (#108)
Since [1], this will come automatically from `rustc-std-workspace-core` and the crates.io dependency should no longer be specified. [1]: rust-lang/rust#141993
1 parent 039c272 commit 2756dc7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,14 @@ members = ["./crates/*"]
2727
wit-bindgen-rt = { version = "0.39.0", features = ["bitflags"] }
2828

2929
# When built as part of libstd
30-
compiler_builtins = { version = "0.1", optional = true }
3130
core = { version = "1.0", optional = true, package = "rustc-std-workspace-core" }
3231
rustc-std-workspace-alloc = { version = "1.0", optional = true }
3332

3433
[features]
3534
default = ["std"]
3635
std = []
3736
# Unstable feature to support being a libstd dependency
38-
rustc-dep-of-std = ["compiler_builtins", "core", "rustc-std-workspace-alloc"]
37+
rustc-dep-of-std = ["core", "rustc-std-workspace-alloc"]
3938

4039
[[example]]
4140
name = "cli-command-no_std"

0 commit comments

Comments
 (0)