diff options
| author | Mateusz Mikuła <mati865@gmail.com> | 2019-12-30 13:48:00 +0100 |
|---|---|---|
| committer | Mateusz Mikuła <mati865@gmail.com> | 2019-12-30 13:50:23 +0100 |
| commit | d452f892068bf65b3e76cb2e7967c5b3eb3dd523 (patch) | |
| tree | ee703fa0c882d5bbf6b748aafc418e931cf1b628 | |
| parent | 580ac0b4f1c6f9cf76f6edafdaf9806437770aff (diff) | |
| download | rust-d452f892068bf65b3e76cb2e7967c5b3eb3dd523.tar.gz rust-d452f892068bf65b3e76cb2e7967c5b3eb3dd523.zip | |
Bump smallvec
| -rw-r--r-- | Cargo.lock | 2 | ||||
| -rw-r--r-- | src/librustc_codegen_llvm/Cargo.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock index b90bcfc7f2f..9047e0489a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3379,7 +3379,7 @@ dependencies = [ "rustc_llvm", "rustc_session", "rustc_target", - "smallvec 0.6.10", + "smallvec 1.0.0", "syntax", "syntax_expand", "syntax_pos", diff --git a/src/librustc_codegen_llvm/Cargo.toml b/src/librustc_codegen_llvm/Cargo.toml index 71cfacfa560..11426b056fb 100644 --- a/src/librustc_codegen_llvm/Cargo.toml +++ b/src/librustc_codegen_llvm/Cargo.toml @@ -28,7 +28,7 @@ rustc_index = { path = "../librustc_index" } rustc_llvm = { path = "../librustc_llvm" } rustc_session = { path = "../librustc_session" } 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_expand = { path = "../libsyntax_expand" } syntax_pos = { path = "../libsyntax_pos" } |
