Skip to content

Commit 6db0c14

Browse files
authored
Remove compiler-builtins from rustc-dep-of-std dependencies (#77)
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 0bccd3f commit 6db0c14

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
@@ -30,12 +30,11 @@ exclude = ["/.github/*"]
3030
[dependencies]
3131
std = { version = "1.0", package = "rustc-std-workspace-std", optional = true }
3232
core = { version = "1.0", package = "rustc-std-workspace-core", optional = true }
33-
compiler_builtins = { version = "0.1", optional = true }
3433

3534
[features]
3635
cjk = []
3736
default = ["cjk"]
38-
rustc-dep-of-std = ['std', 'core', 'compiler_builtins']
37+
rustc-dep-of-std = ['std', 'core']
3938

4039
# Legacy, now a no-op
4140
no_std = []

0 commit comments

Comments
 (0)