Skip to content

Commit 5c3b27b

Browse files
committed
Remove compiler-builtins from rustc-dep-of-std dependencies
Since [1], this will come automatically from `rustc-std-workspace-core` and the crates.io dependency should no longer be specified.
1 parent 4edf327 commit 5c3b27b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ item that gets emitted.
1515
edition = "2018"
1616

1717
[dependencies]
18-
core = { version = "1.0.0", optional = true, package = 'rustc-std-workspace-core' }
19-
compiler_builtins = { version = '0.1.2', optional = true }
18+
core = { version = "1.0.0", optional = true, package = "rustc-std-workspace-core" }
2019

2120
[features]
22-
rustc-dep-of-std = ['core', 'compiler_builtins']
21+
rustc-dep-of-std = ["core"]

0 commit comments

Comments
 (0)