Skip to content

Commit f0ac35d

Browse files
committed
compiler: support multiple unstable attributes on items
1 parent 6c0c3f2 commit f0ac35d

File tree

36 files changed

+809
-310
lines changed

36 files changed

+809
-310
lines changed

Cargo.lock

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3322,6 +3322,7 @@ dependencies = [
33223322
"rustc_serialize",
33233323
"rustc_session",
33243324
"rustc_span",
3325+
"smallvec",
33253326
]
33263327

33273328
[[package]]
@@ -3495,6 +3496,7 @@ dependencies = [
34953496
"rustc_target",
34963497
"rustc_trait_selection",
34973498
"rustc_type_ir",
3499+
"smallvec",
34983500
"tracing",
34993501
]
35003502

@@ -4205,6 +4207,7 @@ dependencies = [
42054207
"rustc_span",
42064208
"rustc_target",
42074209
"rustc_trait_selection",
4210+
"smallvec",
42084211
"tracing",
42094212
]
42104213

compiler/rustc_attr/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@ rustc_macros = { path = "../rustc_macros" }
1717
rustc_serialize = { path = "../rustc_serialize" }
1818
rustc_session = { path = "../rustc_session" }
1919
rustc_span = { path = "../rustc_span" }
20+
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
2021
# tidy-alphabetical-end

0 commit comments

Comments
 (0)