Skip to content

Commit 4a64abd

Browse files
committed
update dependencies
1 parent b685d6e commit 4a64abd

File tree

5 files changed

+8
-2
lines changed

5 files changed

+8
-2
lines changed

Cargo.lock

+4-1
Original file line numberDiff line numberDiff line change
@@ -3673,6 +3673,7 @@ dependencies = [
36733673
"rustc_errors",
36743674
"rustc_feature",
36753675
"rustc_fluent_macro",
3676+
"rustc_hir",
36763677
"rustc_lexer",
36773678
"rustc_lint_defs",
36783679
"rustc_macros",
@@ -3728,6 +3729,7 @@ dependencies = [
37283729
"rustc_span",
37293730
"rustc_target",
37303731
"smallvec",
3732+
"thin-vec",
37313733
"tracing",
37323734
]
37333735

@@ -4341,6 +4343,7 @@ name = "rustc_sanitizers"
43414343
version = "0.0.0"
43424344
dependencies = [
43434345
"bitflags 2.6.0",
4346+
"rustc_attr",
43444347
"rustc_data_structures",
43454348
"rustc_hir",
43464349
"rustc_middle",
@@ -4393,9 +4396,9 @@ version = "0.0.0"
43934396
dependencies = [
43944397
"rustc_abi",
43954398
"rustc_ast",
4396-
"rustc_ast_pretty",
43974399
"rustc_data_structures",
43984400
"rustc_hir",
4401+
"rustc_hir_pretty",
43994402
"rustc_middle",
44004403
"rustc_session",
44014404
"rustc_span",

compiler/rustc_expand/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ rustc_data_structures = { path = "../rustc_data_structures" }
1717
rustc_errors = { path = "../rustc_errors" }
1818
rustc_feature = { path = "../rustc_feature" }
1919
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
20+
rustc_hir = { path = "../rustc_hir" }
2021
rustc_lexer = { path = "../rustc_lexer" }
2122
rustc_lint_defs = { path = "../rustc_lint_defs" }
2223
rustc_macros = { path = "../rustc_macros" }

compiler/rustc_hir/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,6 @@ rustc_serialize = { path = "../rustc_serialize" }
1515
rustc_span = { path = "../rustc_span" }
1616
rustc_target = { path = "../rustc_target" }
1717
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
18+
thin-vec = "0.2.12"
1819
tracing = "0.1"
1920
# tidy-alphabetical-end

compiler/rustc_sanitizers/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ tracing = "0.1"
99
twox-hash = "1.6.3"
1010
rustc_data_structures = { path = "../rustc_data_structures" }
1111
rustc_hir = { path = "../rustc_hir" }
12+
rustc_attr = { path = "../rustc_attr" }
1213
rustc_middle = { path = "../rustc_middle" }
1314
rustc_span = { path = "../rustc_span" }
1415
rustc_target = { path = "../rustc_target" }

compiler/rustc_smir/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ edition = "2021"
77
# tidy-alphabetical-start
88
rustc_abi = { path = "../rustc_abi" }
99
rustc_ast = { path = "../rustc_ast" }
10-
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
1110
rustc_data_structures = { path = "../rustc_data_structures" }
1211
rustc_hir = { path = "../rustc_hir" }
12+
rustc_hir_pretty = { path = "../rustc_hir_pretty" }
1313
rustc_middle = { path = "../rustc_middle" }
1414
rustc_session = { path = "../rustc_session" }
1515
rustc_span = { path = "../rustc_span" }

0 commit comments

Comments
 (0)