File tree 3 files changed +3
-3
lines changed
compiler/rustc_parse_format
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4157,7 +4157,7 @@ dependencies = [
4157
4157
name = " rustc_parse_format"
4158
4158
version = " 0.0.0"
4159
4159
dependencies = [
4160
- " rustc_data_structures " ,
4160
+ " rustc_index " ,
4161
4161
" rustc_lexer" ,
4162
4162
]
4163
4163
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ edition = "2021"
5
5
6
6
[dependencies ]
7
7
rustc_lexer = { path = " ../rustc_lexer" }
8
- rustc_data_structures = { path = " ../rustc_data_structures " }
8
+ rustc_index = { path = " ../rustc_index " , default-features = false }
Original file line number Diff line number Diff line change @@ -1011,7 +1011,7 @@ fn unescape_string(string: &str) -> Option<string::String> {
1011
1011
1012
1012
// Assert a reasonable size for `Piece`
1013
1013
#[ cfg( all( target_arch = "x86_64" , target_pointer_width = "64" ) ) ]
1014
- rustc_data_structures :: static_assert_size!( Piece <' _>, 16 ) ;
1014
+ rustc_index :: static_assert_size!( Piece <' _>, 16 ) ;
1015
1015
1016
1016
#[ cfg( test) ]
1017
1017
mod tests;
You can’t perform that action at this time.
0 commit comments