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 @@ -848,7 +848,7 @@ dependencies = [
848
848
" autocfg" ,
849
849
" cfg-if" ,
850
850
" crossbeam-utils" ,
851
- " memoffset" ,
851
+ " memoffset 0.8.0 " ,
852
852
" scopeguard" ,
853
853
]
854
854
@@ -1193,11 +1193,11 @@ dependencies = [
1193
1193
1194
1194
[[package ]]
1195
1195
name = " field-offset"
1196
- version = " 0.3.5 "
1196
+ version = " 0.3.6 "
1197
1197
source = " registry+https://github.com/rust-lang/crates.io-index"
1198
- checksum = " a3cf3a800ff6e860c863ca6d4b16fd999db8b752819c1606884047b73e468535 "
1198
+ checksum = " 38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f "
1199
1199
dependencies = [
1200
- " memoffset" ,
1200
+ " memoffset 0.9.0 " ,
1201
1201
" rustc_version" ,
1202
1202
]
1203
1203
@@ -2145,6 +2145,15 @@ dependencies = [
2145
2145
" autocfg" ,
2146
2146
]
2147
2147
2148
+ [[package ]]
2149
+ name = " memoffset"
2150
+ version = " 0.9.0"
2151
+ source = " registry+https://github.com/rust-lang/crates.io-index"
2152
+ checksum = " 5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
2153
+ dependencies = [
2154
+ " autocfg" ,
2155
+ ]
2156
+
2148
2157
[[package ]]
2149
2158
name = " mime"
2150
2159
version = " 0.3.16"
@@ -3976,7 +3985,7 @@ version = "0.0.0"
3976
3985
dependencies = [
3977
3986
" field-offset" ,
3978
3987
" measureme" ,
3979
- " memoffset" ,
3988
+ " memoffset 0.9.0 " ,
3980
3989
" rustc-rayon-core" ,
3981
3990
" rustc_ast" ,
3982
3991
" 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