Skip to content

Commit 76c63ac

Browse files
authored
Remove compiler-builtins from rustc-dep-of-std dependencies (#777)
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 3d7f84d commit 76c63ac

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ ruzstd = { version = "0.8.1", optional = true }
3535
# Internal feature, only used when building as part of libstd, not part of the
3636
# stable interface of this crate.
3737
core = { version = '1.0.0', optional = true, package = 'rustc-std-workspace-core' }
38-
compiler_builtins = { version = '0.1.2', optional = true }
3938
alloc = { version = '1.0.0', optional = true, package = 'rustc-std-workspace-alloc' }
4039

4140
[features]
@@ -112,7 +111,7 @@ unstable-all = ["all", "unstable"]
112111
#=======================================
113112
# Internal feature, only used when building as part of libstd, not part of the
114113
# stable interface of this crate.
115-
rustc-dep-of-std = ['core', 'compiler_builtins', 'alloc', 'memchr/rustc-dep-of-std']
114+
rustc-dep-of-std = ['core', 'alloc', 'memchr/rustc-dep-of-std']
116115

117116
[workspace]
118117
members = ["crates/*"]

0 commit comments

Comments
 (0)