File tree 2 files changed +17
-6
lines changed
compiler/rustc_query_impl
2 files changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -849,7 +849,7 @@ dependencies = [
849
849
" autocfg" ,
850
850
" cfg-if" ,
851
851
" crossbeam-utils" ,
852
- " memoffset" ,
852
+ " memoffset 0.8.0 " ,
853
853
" scopeguard" ,
854
854
]
855
855
@@ -1204,11 +1204,11 @@ dependencies = [
1204
1204
1205
1205
[[package ]]
1206
1206
name = " field-offset"
1207
- version = " 0.3.5 "
1207
+ version = " 0.3.6 "
1208
1208
source = " registry+https://github.com/rust-lang/crates.io-index"
1209
- checksum = " a3cf3a800ff6e860c863ca6d4b16fd999db8b752819c1606884047b73e468535 "
1209
+ checksum = " 38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f "
1210
1210
dependencies = [
1211
- " memoffset" ,
1211
+ " memoffset 0.9.0 " ,
1212
1212
" rustc_version" ,
1213
1213
]
1214
1214
@@ -2157,6 +2157,15 @@ dependencies = [
2157
2157
" autocfg" ,
2158
2158
]
2159
2159
2160
+ [[package ]]
2161
+ name = " memoffset"
2162
+ version = " 0.9.0"
2163
+ source = " registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = " 5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
2165
+ dependencies = [
2166
+ " autocfg" ,
2167
+ ]
2168
+
2160
2169
[[package ]]
2161
2170
name = " mime"
2162
2171
version = " 0.3.16"
@@ -3988,7 +3997,7 @@ version = "0.0.0"
3988
3997
dependencies = [
3989
3998
" field-offset" ,
3990
3999
" measureme" ,
3991
- " memoffset" ,
4000
+ " memoffset 0.9.0 " ,
3992
4001
" rustc-rayon-core" ,
3993
4002
" rustc_ast" ,
3994
4003
" rustc_data_structures" ,
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ edition = "2021"
7
7
8
8
9
9
[dependencies ]
10
- memoffset = { version = " 0.8.0" , features = [" unstable_const" ] }
11
10
field-offset = " 0.3.5"
12
11
measureme = " 10.0.0"
13
12
rustc_ast = { path = " ../rustc_ast" }
@@ -25,5 +24,8 @@ rustc_span = { path = "../rustc_span" }
25
24
thin-vec = " 0.2.12"
26
25
tracing = " 0.1"
27
26
27
+ # Not used directly, but included to enable the unstable_offset_of feature
28
+ memoffset = { version = " 0.9.0" , features = [" unstable_offset_of" ] }
29
+
28
30
[features ]
29
31
rustc_use_parallel_compiler = [" rustc-rayon-core" , " rustc_query_system/rustc_use_parallel_compiler" ]
You can’t perform that action at this time.
0 commit comments