Updates the requirements on ndarray to permit the latest version.
Changelog
*Sourced from [ndarray's changelog](https://github.com/rust-ndarray/ndarray/blob/master/RELEASES.md).*
> Version 0.13.0 (2019-09-23)
> ===========================
>
> New features
> ------------
>
> - `ndarray-parallel` is merged into `ndarray`. Use the `rayon` feature-flag to get access to parallel iterators and
> other parallelized methods.
> ([#563](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/563/files) by [@bluss])
> - Add `logspace` and `geomspace` constructors
> ([#617](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/617) by [@JP-Ellis])
> - Implement approx traits for `ArrayBase`. They can be enabled using the `approx` feature-flag.
> ([#581](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/581) by [@jturner314])
> - Add `mean` method
> ([#580](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/580) by [@LukeMathWalker])
> - Add `Zip::all` to check if all elements satisfy a predicate
> ([#615](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/615) by [@mneumann])
> - Add `RawArrayView` and `RawArrayViewMut` types and `RawData`, `RawDataMut`, and `RawDataClone` traits
> ([#496](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/496) by [@jturner314])
> - Add `CowArray`, `C`lone `o`n `write` array
> ([#632](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/632) by [@jturner314] and [@andrei-papou])
> - Add `as_standard_layout` to `ArrayBase`: it takes an array by reference and returns a `CoWArray` in standard layout
> ([#616](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/616) by [@jturner314] and [@andrei-papou])
> - Add `Array2::from_diag` method to create 2D arrays from a diagonal
> ([#673](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/673) by [@rth])
> - Add `fold` method to `Zip`
> ([#684](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/684) by [@jturner314])
> - Add `split_at` method to `AxisChunksIter/Mut`
> ([#691](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/691) by [@jturner314])
> - Implement parallel iteration for `AxisChunksIter/Mut`
> ([#639](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/639) by [@nitsky])
> - Add `into_scalar` method to `ArrayView0` and `ArrayViewMut0`
> ([#700](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/700) by [@LukeMathWalker])
> - Add `accumulate_axis_inplace` method to `ArrayBase`
> ([#611](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/611) by [@jturner314] and [@bluss])
> - Add the `array!`, `azip!`, and `s!` macros to `ndarray::prelude`
> ([#517](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/517) by [@jturner314])
>
> Enhancements
> ------------
> - Improve performance for matrix multiplications when using the pure-Rust backend thanks to `matrix-multiply:v0.2`
> (leverage SIMD instructions on x86-64 with runtime feature detection)
> ([#556](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/556) by [@bluss])
> - Improve performance of `fold` for iterators
> ([#574](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/574) by [@jturner314])
> - Improve performance of `nth_back` for iterators
> ([#686](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/686) by [@jturner314])
> - Improve performance of iterators for 1-d arrays
> ([#614](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/614) by [@andrei-papou])
> - Improve formatting for large arrays
> ... (truncated)
Commits
- [`5d89cb5`](https://github.com/rust-ndarray/ndarray/commit/5d89cb55a83a213e8796eca6da5b21d99cf803c1) 0.13.0
- [`727ebfa`](https://github.com/rust-ndarray/ndarray/commit/727ebfadc3dee5ddc004147f3dfb7585b966ebdc) DOC: Add links to a few items close to the top of crate docs
- [`235838a`](https://github.com/rust-ndarray/ndarray/commit/235838aed3a64ef732ac9237dda65ee5b067d4db) DOC: Fix typos in split_at doc
- [`5a94f7b`](https://github.com/rust-ndarray/ndarray/commit/5a94f7bb8d9a932184d611c1a21b4226e8df7bd4) Merge pull request [#721](https://github-redirect.dependabot.com/rust-ndarray/ndarray/issues/721) from jturner314/prepare-0.13.0
- [`5ab292d`](https://github.com/rust-ndarray/ndarray/commit/5ab292d671a1f22773a172cae215fb48234d6c00) Merge pull request [#722](https://github-redirect.dependabot.com/rust-ndarray/ndarray/issues/722) from rust-ndarray/update-par-azip
- [`0c1a3d7`](https://github.com/rust-ndarray/ndarray/commit/0c1a3d749efcb2112ec73e3adf8b75951175aaff) FIX: Update par_azip!() to use the same syntax as azip!()
- [`f7645e8`](https://github.com/rust-ndarray/ndarray/commit/f7645e800cb886053f25457b60e30aba0c85d321) FIX: Refactor zipmacro to use internal rules
- [`b03446d`](https://github.com/rust-ndarray/ndarray/commit/b03446d08152be109e827394da8ae14adf682455) FIX: Simplify azip!() trailing comma rule - use new macro feature $()?
- [`a05e2d0`](https://github.com/rust-ndarray/ndarray/commit/a05e2d0ce8a3faa1d081311c72dd99c292bb1f51) DOC: Update min rust version in crate docs.
- [`4891a9b`](https://github.com/rust-ndarray/ndarray/commit/4891a9b17ef7871a9e98baa79d31a86d11e29bc5) MAINT: Bump ndarray to 0.13 in parallel/ and ndarray-rand/
- Additional commits viewable in [compare view](https://github.com/rust-ndarray/ndarray/compare/0.12.0...0.13.0)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Finally, you can contact us by mentioning @dependabot.
Updates the requirements on ndarray to permit the latest version.
Changelog
*Sourced from [ndarray's changelog](https://github.com/rust-ndarray/ndarray/blob/master/RELEASES.md).* > Version 0.13.0 (2019-09-23) > =========================== > > New features > ------------ > > - `ndarray-parallel` is merged into `ndarray`. Use the `rayon` feature-flag to get access to parallel iterators and > other parallelized methods. > ([#563](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/563/files) by [@bluss]) > - Add `logspace` and `geomspace` constructors > ([#617](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/617) by [@JP-Ellis]) > - Implement approx traits for `ArrayBase`. They can be enabled using the `approx` feature-flag. > ([#581](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/581) by [@jturner314]) > - Add `mean` method > ([#580](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/580) by [@LukeMathWalker]) > - Add `Zip::all` to check if all elements satisfy a predicate > ([#615](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/615) by [@mneumann]) > - Add `RawArrayView` and `RawArrayViewMut` types and `RawData`, `RawDataMut`, and `RawDataClone` traits > ([#496](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/496) by [@jturner314]) > - Add `CowArray`, `C`lone `o`n `write` array > ([#632](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/632) by [@jturner314] and [@andrei-papou]) > - Add `as_standard_layout` to `ArrayBase`: it takes an array by reference and returns a `CoWArray` in standard layout > ([#616](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/616) by [@jturner314] and [@andrei-papou]) > - Add `Array2::from_diag` method to create 2D arrays from a diagonal > ([#673](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/673) by [@rth]) > - Add `fold` method to `Zip` > ([#684](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/684) by [@jturner314]) > - Add `split_at` method to `AxisChunksIter/Mut` > ([#691](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/691) by [@jturner314]) > - Implement parallel iteration for `AxisChunksIter/Mut` > ([#639](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/639) by [@nitsky]) > - Add `into_scalar` method to `ArrayView0` and `ArrayViewMut0` > ([#700](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/700) by [@LukeMathWalker]) > - Add `accumulate_axis_inplace` method to `ArrayBase` > ([#611](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/611) by [@jturner314] and [@bluss]) > - Add the `array!`, `azip!`, and `s!` macros to `ndarray::prelude` > ([#517](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/517) by [@jturner314]) > > Enhancements > ------------ > - Improve performance for matrix multiplications when using the pure-Rust backend thanks to `matrix-multiply:v0.2` > (leverage SIMD instructions on x86-64 with runtime feature detection) > ([#556](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/556) by [@bluss]) > - Improve performance of `fold` for iterators > ([#574](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/574) by [@jturner314]) > - Improve performance of `nth_back` for iterators > ([#686](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/686) by [@jturner314]) > - Improve performance of iterators for 1-d arrays > ([#614](https://github-redirect.dependabot.com/rust-ndarray/ndarray/pull/614) by [@andrei-papou]) > - Improve formatting for large arrays > ... (truncated)Commits
- [`5d89cb5`](https://github.com/rust-ndarray/ndarray/commit/5d89cb55a83a213e8796eca6da5b21d99cf803c1) 0.13.0 - [`727ebfa`](https://github.com/rust-ndarray/ndarray/commit/727ebfadc3dee5ddc004147f3dfb7585b966ebdc) DOC: Add links to a few items close to the top of crate docs - [`235838a`](https://github.com/rust-ndarray/ndarray/commit/235838aed3a64ef732ac9237dda65ee5b067d4db) DOC: Fix typos in split_at doc - [`5a94f7b`](https://github.com/rust-ndarray/ndarray/commit/5a94f7bb8d9a932184d611c1a21b4226e8df7bd4) Merge pull request [#721](https://github-redirect.dependabot.com/rust-ndarray/ndarray/issues/721) from jturner314/prepare-0.13.0 - [`5ab292d`](https://github.com/rust-ndarray/ndarray/commit/5ab292d671a1f22773a172cae215fb48234d6c00) Merge pull request [#722](https://github-redirect.dependabot.com/rust-ndarray/ndarray/issues/722) from rust-ndarray/update-par-azip - [`0c1a3d7`](https://github.com/rust-ndarray/ndarray/commit/0c1a3d749efcb2112ec73e3adf8b75951175aaff) FIX: Update par_azip!() to use the same syntax as azip!() - [`f7645e8`](https://github.com/rust-ndarray/ndarray/commit/f7645e800cb886053f25457b60e30aba0c85d321) FIX: Refactor zipmacro to use internal rules - [`b03446d`](https://github.com/rust-ndarray/ndarray/commit/b03446d08152be109e827394da8ae14adf682455) FIX: Simplify azip!() trailing comma rule - use new macro feature $()? - [`a05e2d0`](https://github.com/rust-ndarray/ndarray/commit/a05e2d0ce8a3faa1d081311c72dd99c292bb1f51) DOC: Update min rust version in crate docs. - [`4891a9b`](https://github.com/rust-ndarray/ndarray/commit/4891a9b17ef7871a9e98baa79d31a86d11e29bc5) MAINT: Bump ndarray to 0.13 in parallel/ and ndarray-rand/ - Additional commits viewable in [compare view](https://github.com/rust-ndarray/ndarray/compare/0.12.0...0.13.0)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.