Skip to content

Commit c47e942

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 9ec04a7 commit c47e942

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
@@ -16,15 +16,14 @@ members = ['crates/witx-bindgen', 'crates/wasi-ephemeral']
1616

1717
[dependencies]
1818
# When built as part of libstd
19-
compiler_builtins = { version = "0.1", optional = true }
2019
core = { version = "1.0", optional = true, package = "rustc-std-workspace-core" }
2120
rustc-std-workspace-alloc = { version = "1.0", optional = true }
2221

2322
[features]
2423
default = ["std"]
2524
std = []
2625
# Unstable feature to support being a libstd dependency
27-
rustc-dep-of-std = ["compiler_builtins", "core", "rustc-std-workspace-alloc"]
26+
rustc-dep-of-std = ["core", "rustc-std-workspace-alloc"]
2827

2928
[badges]
3029
maintenance = { status = "experimental" }

0 commit comments

Comments
 (0)