File tree 3 files changed +7
-1
lines changed
3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -235,6 +235,7 @@ name = "proc_macro"
235
235
version = " 0.0.0"
236
236
dependencies = [
237
237
" core" ,
238
+ " rustc-literal-escaper" ,
238
239
" std" ,
239
240
]
240
241
@@ -310,6 +311,10 @@ dependencies = [
310
311
" rustc-std-workspace-core" ,
311
312
]
312
313
314
+ [[package ]]
315
+ name = " rustc-literal-escaper"
316
+ version = " 0.0.1"
317
+
313
318
[[package ]]
314
319
name = " rustc-std-workspace-alloc"
315
320
version = " 1.99.0"
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ std = { path = "../std" }
9
9
# `core` when resolving doc links. Without this line a different `core` will be
10
10
# loaded from sysroot causing duplicate lang items and other similar errors.
11
11
core = { path = " ../core" }
12
- rustc-literal-escaper = " 0.0.1 "
12
+ rustc-literal-escaper = { version = " 0.0.2 " , features = [ " rustc-dep-of-std " ] }
Original file line number Diff line number Diff line change 27
27
#![ feature( panic_can_unwind) ]
28
28
#![ feature( restricted_std) ]
29
29
#![ feature( rustc_attrs) ]
30
+ #![ feature( stmt_expr_attributes) ]
30
31
#![ feature( extend_one) ]
31
32
#![ recursion_limit = "256" ]
32
33
#![ allow( internal_features) ]
You can’t perform that action at this time.
0 commit comments