From 16773222390b73df5b57a49aca69a9696b1b3272 Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Wed, 4 Jun 2025 19:45:57 +0000 Subject: [PATCH] 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]: https://github.com/rust-lang/rust/pull/141993 --- Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 463edc6..ee50c2b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,12 +30,11 @@ exclude = ["/.github/*"] [dependencies] std = { version = "1.0", package = "rustc-std-workspace-std", optional = true } core = { version = "1.0", package = "rustc-std-workspace-core", optional = true } -compiler_builtins = { version = "0.1", optional = true } [features] cjk = [] default = ["cjk"] -rustc-dep-of-std = ['std', 'core', 'compiler_builtins'] +rustc-dep-of-std = ['std', 'core'] # Legacy, now a no-op no_std = []