diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-11-06 07:03:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-06 07:03:08 +0100 |
| commit | 167b8fedd615becb4e614ae0635a0e488cce70c4 (patch) | |
| tree | 21d9dbb2693a5ea4f8fc08b7241021dd1e14b92c /src/libsyntax_ext | |
| parent | 98cbe179032726052d672334bb1a82cd4f604072 (diff) | |
| parent | 90b8d34c9f0d17c948801f676a96800e8b038508 (diff) | |
| download | rust-167b8fedd615becb4e614ae0635a0e488cce70c4.tar.gz rust-167b8fedd615becb4e614ae0635a0e488cce70c4.zip | |
Rollup merge of #66086 - RalfJung:smallvec, r=nagisa
bump smallvec to 1.0 This includes https://github.com/servo/rust-smallvec/pull/162, fixing an unsoundness in smallvec. See https://github.com/servo/rust-smallvec/pull/175 for the 1.0 release announcement. Cc @mbrubeck @emilio
Diffstat (limited to 'src/libsyntax_ext')
| -rw-r--r-- | src/libsyntax_ext/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax_ext/Cargo.toml b/src/libsyntax_ext/Cargo.toml index 440873f3c2b..703d51e1c4c 100644 --- a/src/libsyntax_ext/Cargo.toml +++ b/src/libsyntax_ext/Cargo.toml @@ -15,7 +15,7 @@ fmt_macros = { path = "../libfmt_macros" } log = "0.4" rustc_data_structures = { path = "../librustc_data_structures" } 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" } |
