1
Fork 0

Auto merge of #67729 - mati865:deps, r=nikomatsakis

Bump smallvec
This commit is contained in:
bors 2020-01-01 15:10:48 +00:00
commit 1ed41b0720
2 changed files with 2 additions and 2 deletions

View file

@ -3415,7 +3415,7 @@ dependencies = [
"rustc_session", "rustc_session",
"rustc_span", "rustc_span",
"rustc_target", "rustc_target",
"smallvec 0.6.10", "smallvec 1.0.0",
"syntax", "syntax",
] ]

View file

@ -28,7 +28,7 @@ rustc_index = { path = "../librustc_index" }
rustc_llvm = { path = "../librustc_llvm" } rustc_llvm = { path = "../librustc_llvm" }
rustc_session = { path = "../librustc_session" } rustc_session = { path = "../librustc_session" }
rustc_target = { path = "../librustc_target" } rustc_target = { path = "../librustc_target" }
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] } smallvec = { version = "1.0", features = ["union", "may_dangle"] }
syntax = { path = "../libsyntax" } syntax = { path = "../libsyntax" }
rustc_expand = { path = "../librustc_expand" } rustc_expand = { path = "../librustc_expand" }
rustc_span = { path = "../librustc_span" } rustc_span = { path = "../librustc_span" }