Skip to content

Commit 487f740

Browse files
committed
compiler: support multiple unstable attributes on items
1 parent f559f57 commit 487f740

File tree

34 files changed

+799
-376
lines changed

34 files changed

+799
-376
lines changed

Cargo.lock

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3340,6 +3340,7 @@ dependencies = [
33403340
"rustc_serialize",
33413341
"rustc_session",
33423342
"rustc_span",
3343+
"smallvec",
33433344
]
33443345

33453346
[[package]]
@@ -4222,6 +4223,7 @@ dependencies = [
42224223
"rustc_span",
42234224
"rustc_target",
42244225
"rustc_trait_selection",
4226+
"smallvec",
42254227
"tracing",
42264228
]
42274229

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)