From 77e487110fded3d6bb39200758fe48372c4bf688 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Mar 2021 05:49:39 +0000 Subject: [PATCH] Bump ndarray from 0.13.1 to 0.15.0 Bumps [ndarray](https://github.com/rust-ndarray/ndarray) from 0.13.1 to 0.15.0. - [Release notes](https://github.com/rust-ndarray/ndarray/releases) - [Changelog](https://github.com/rust-ndarray/ndarray/blob/master/RELEASES.md) - [Commits](https://github.com/rust-ndarray/ndarray/compare/0.13.1...0.15.0) Signed-off-by: dependabot[bot] --- Cargo.lock | 41 ++++++++++++++++++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 37 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0cf47febc3..a114fdd81e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -233,6 +233,15 @@ dependencies = [ "rawpointer", ] +[[package]] +name = "matrixmultiply" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1300bdbea33ec2836b01ff1f5a6eed8bad66d0c31f94d9b7993407a8b054c3a1" +dependencies = [ + "rawpointer", +] + [[package]] name = "memoffset" version = "0.6.1" @@ -248,8 +257,21 @@ version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ac06db03ec2f46ee0ecdca1a1c34a99c0d188a0d83439b84bf0cb4b386e4ab09" dependencies = [ - "matrixmultiply", - "num-complex", + "matrixmultiply 0.2.4", + "num-complex 0.2.4", + "num-integer", + "num-traits", + "rawpointer", +] + +[[package]] +name = "ndarray" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "073c7c76f7b90654996f08db92290e9f300d11de0634493d6f1c4fd11d8a1583" +dependencies = [ + "matrixmultiply 0.3.0", + "num-complex 0.4.0", "num-integer", "num-traits", "rawpointer", @@ -266,6 +288,15 @@ dependencies = [ "num-traits", ] +[[package]] +name = "num-complex" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26873667bbbb7c5182d4a37c1add32cdf09f841af72da53318fdb81543c15085" +dependencies = [ + "num-traits", +] + [[package]] name = "num-integer" version = "0.1.44" @@ -303,8 +334,8 @@ checksum = "9fd9e8e652becf4ba6c11803945f8bf463c23f482f704bb33f70ae9d22482d10" dependencies = [ "cfg-if 0.1.10", "libc", - "ndarray", - "num-complex", + "ndarray 0.13.1", + "num-complex 0.2.4", "num-traits", "pyo3", ] @@ -524,7 +555,7 @@ version = "0.8.0" dependencies = [ "fixedbitset", "hashbrown", - "ndarray", + "ndarray 0.15.0", "numpy", "petgraph", "pyo3", diff --git a/Cargo.toml b/Cargo.toml index 6fa1831bc2..ba90f45038 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ version = "0.9" features = ["rayon"] [dependencies.ndarray] -version = "^0.13.0" +version = "^0.15.0" features = ["rayon"] [profile.release]