Skip to content

Commit e26e8f1

Browse files
committed
update dependencies
1 parent eb90c77 commit e26e8f1

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

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)