Skip to content

Commit cf6adc1

Browse files
committed
compiler: support multiple unstable attributes on items
1 parent bbcb69a commit cf6adc1

File tree

36 files changed

+808
-308
lines changed

36 files changed

+808
-308
lines changed

Cargo.lock

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3338,6 +3338,7 @@ dependencies = [
33383338
"rustc_serialize",
33393339
"rustc_session",
33403340
"rustc_span",
3341+
"smallvec",
33413342
]
33423343

33433344
[[package]]
@@ -3511,6 +3512,7 @@ dependencies = [
35113512
"rustc_target",
35123513
"rustc_trait_selection",
35133514
"rustc_type_ir",
3515+
"smallvec",
35143516
"tracing",
35153517
]
35163518

@@ -4228,6 +4230,7 @@ dependencies = [
42284230
"rustc_span",
42294231
"rustc_target",
42304232
"rustc_trait_selection",
4233+
"smallvec",
42314234
"tracing",
42324235
]
42334236

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)