1
Fork 0

rustc_parse: Remove unused dependency smallvec

Unused since commit 530a629635
("Remove pretty-print/reparse hack, and add derive-specific hack").
This commit is contained in:
Josh Triplett 2021-06-24 23:37:55 -07:00
parent 20cedd1925
commit 7d75cac8e6
2 changed files with 0 additions and 2 deletions

View file

@ -4182,7 +4182,6 @@ dependencies = [
"rustc_lexer", "rustc_lexer",
"rustc_session", "rustc_session",
"rustc_span", "rustc_span",
"smallvec",
"tracing", "tracing",
"unicode-normalization", "unicode-normalization",
] ]

View file

@ -19,4 +19,3 @@ rustc_session = { path = "../rustc_session" }
rustc_span = { path = "../rustc_span" } rustc_span = { path = "../rustc_span" }
rustc_ast = { path = "../rustc_ast" } rustc_ast = { path = "../rustc_ast" }
unicode-normalization = "0.1.11" unicode-normalization = "0.1.11"
smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }