diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-11-15 13:03:46 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2019-11-15 13:03:46 +0000 |
commit | c6f05abfbbfa2fd1ff06e1adeea7885151aaa768 (patch) | |
tree | c9c1cf36c97933eb8e74c0da9f6c4601f89590d2 /crates/ra_mbe | |
parent | 04f1bd17cbedfdc89b1061376dabd52aa94cb4a9 (diff) | |
parent | a5f57f98ca4c0afb1c292da6676a1273ce95f0e0 (diff) |
Merge #2259
2259: Update smallvec and fix rustc warning r=matklad a=memoryruins
- Update smallvec in ra_mbe to [1.0](https://github.com/servo/rust-smallvec/releases/tag/v1.0.0)
- Heed rustc's `array_into_iter` lint https://github.com/rust-lang/rust/issues/66145
Co-authored-by: memoryruins <[email protected]>
Diffstat (limited to 'crates/ra_mbe')
-rw-r--r-- | crates/ra_mbe/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_mbe/Cargo.toml b/crates/ra_mbe/Cargo.toml index e8ef2457b..b02e45ee3 100644 --- a/crates/ra_mbe/Cargo.toml +++ b/crates/ra_mbe/Cargo.toml | |||
@@ -9,7 +9,7 @@ ra_syntax = { path = "../ra_syntax" } | |||
9 | ra_parser = { path = "../ra_parser" } | 9 | ra_parser = { path = "../ra_parser" } |
10 | tt = { path = "../ra_tt", package = "ra_tt" } | 10 | tt = { path = "../ra_tt", package = "ra_tt" } |
11 | rustc-hash = "1.0.0" | 11 | rustc-hash = "1.0.0" |
12 | smallvec = "0.6.9" | 12 | smallvec = "1.0.0" |
13 | log = "0.4.5" | 13 | log = "0.4.5" |
14 | 14 | ||
15 | [dev-dependencies] | 15 | [dev-dependencies] |