Skip to content

Commit 37fb475

Browse files
committed
compiler: support multiple unstable attributes on items
1 parent a7b3e72 commit 37fb475

File tree

34 files changed

+795
-372
lines changed

34 files changed

+795
-372
lines changed

Cargo.lock

Lines changed: 2 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]]
@@ -4204,6 +4205,7 @@ dependencies = [
42044205
"rustc_span",
42054206
"rustc_target",
42064207
"rustc_trait_selection",
4208+
"smallvec",
42074209
"tracing",
42084210
]
42094211

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)