Skip to content

Commit 599d9d9

Browse files
authored
cargo: 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 PR #180
1 parent ceef3c9 commit 599d9d9

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
@@ -52,15 +52,14 @@ libc = []
5252

5353
# Internal feature, only used when building as part of libstd, not part of the
5454
# stable interface of this crate.
55-
rustc-dep-of-std = ['core', 'compiler_builtins']
55+
rustc-dep-of-std = ['core']
5656

5757
[dependencies]
5858
# Only used when the `logging` feature is enabled (disabled by default).
5959
log = { version = "0.4.20", optional = true }
6060
# Internal feature, only used when building as part of libstd, not part of the
6161
# stable interface of this crate.
6262
core = { version = '1.0.0', optional = true, package = 'rustc-std-workspace-core' }
63-
compiler_builtins = { version = '0.1.2', optional = true }
6463

6564
[dev-dependencies]
6665
quickcheck = { version = "1.0.3", default-features = false }

0 commit comments

Comments
 (0)