Skip to content

Commit 1cc10c7

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]: rust-lang/rust#141993
1 parent 0314c2b commit 1cc10c7

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
@@ -13,8 +13,7 @@ item that gets emitted.
1313
edition = "2018"
1414

1515
[dependencies]
16-
core = { version = "1.0.0", optional = true, package = 'rustc-std-workspace-core' }
17-
compiler_builtins = { version = '0.1.2', optional = true }
16+
core = { version = "1.0.0", optional = true, package = "rustc-std-workspace-core" }
1817

1918
[features]
20-
rustc-dep-of-std = ['core', 'compiler_builtins']
19+
rustc-dep-of-std = ["core"]

0 commit comments

Comments
 (0)