File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
compiler-builtins/compiler-builtins Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,6 @@ version = "0.1.160"
63
63
dependencies = [
64
64
" cc" ,
65
65
" panic-handler" ,
66
- " rustc-std-workspace-core" ,
67
66
]
68
67
69
68
[[package ]]
@@ -314,6 +313,7 @@ dependencies = [
314
313
name = " rustc-std-workspace-core"
315
314
version = " 1.99.0"
316
315
dependencies = [
316
+ " compiler_builtins 0.1.160" ,
317
317
" core" ,
318
318
]
319
319
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ test = false
19
19
[dependencies ]
20
20
# For more information on this dependency see
21
21
# https://github.com/rust-lang/rust/tree/master/library/rustc-std-workspace-core
22
- core = { version = " 1.0.0" , optional = true , package = " rustc-std-workspace-core" }
22
+ # core = { version = "1.0.0", optional = true, package = "rustc-std-workspace-core" }
23
23
24
24
[build-dependencies ]
25
25
cc = { optional = true , version = " 1.0" }
@@ -53,7 +53,8 @@ mem = []
53
53
mangled-names = []
54
54
55
55
# Only used in the compiler's build system
56
- rustc-dep-of-std = [" compiler-builtins" , " dep:core" ]
56
+ # rustc-dep-of-std = ["compiler-builtins", "dep:core"]
57
+ rustc-dep-of-std = [" compiler-builtins" ]
57
58
58
59
# This makes certain traits and function specializations public that
59
60
# are not normally public but are required by the `builtins-test`
Original file line number Diff line number Diff line change @@ -12,4 +12,4 @@ path = "lib.rs"
12
12
13
13
[dependencies ]
14
14
core = { path = " ../core" }
15
- compiler_builtins = { path = " ../compiler-builtins/compiler-builtins" }
15
+ compiler_builtins = { path = " ../compiler-builtins/compiler-builtins" , features = [ " compiler-builtins " ] }
You can’t perform that action at this time.
0 commit comments