Commit Graph

6 Commits

Author SHA1 Message Date
Taiki Endo e86ac7cfc9 Fix clippy::useless_vec warning in test
```
warning: useless use of `vec!`
 --> tests/smoke.rs:8:13
  |
8 |     let v = vec![2, 3, 5, 7, 11];
  |             ^^^^^^^^^^^^^^^^^^^^ help: you can use an array directly: `[2, 3, 5, 7, 11]`
  |
  = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_vec
  = note: `#[warn(clippy::useless_vec)]` on by default

warning: useless use of `vec!`
  --> tests/smoke.rs:21:13
   |
21 |     let v = vec![10, 20, 30];
   |             ^^^^^^^^^^^^^^^^ help: you can use an array directly: `[10, 20, 30]`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_vec

warning: useless use of `vec!`
  --> tests/smoke.rs:30:13
   |
30 |     let v = vec![10, 20, 30];
   |             ^^^^^^^^^^^^^^^^ help: you can use an array directly: `[10, 20, 30]`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_vec
```
2023-09-10 20:52:03 +09:00
Taiki Endo db4efcbf96 Clean up CI config 2022-01-08 22:45:51 +09:00
Stjepan Glavina d8499b9844 Add Parallel::finish() 2020-07-22 10:12:09 +02:00
Stjepan Glavina c484247882 Collect results in same order closures were added 2020-05-28 09:52:33 +02:00
Stjepan Glavina 7d1c36b2fc Collect results in run() 2020-05-27 10:08:25 +02:00
Stjepan Glavina 0db060cfd0 Initial commit 2020-05-27 00:05:45 +02:00