From 551bc6ea9f9b3440d098812f29bec13e572c86fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Feb 2021 19:22:00 +0000 Subject: [PATCH] Bump ndarray from 0.13.1 to 0.14.0 Bumps [ndarray](https://github.com/rust-ndarray/ndarray) from 0.13.1 to 0.14.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.14.0) Signed-off-by: dependabot[bot] --- Cargo.lock | 30 ++++++++++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 27 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0cf47febc3..e98c152c90 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -249,7 +249,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ac06db03ec2f46ee0ecdca1a1c34a99c0d188a0d83439b84bf0cb4b386e4ab09" dependencies = [ "matrixmultiply", - "num-complex", + "num-complex 0.2.4", + "num-integer", + "num-traits", + "rawpointer", +] + +[[package]] +name = "ndarray" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c0d5c9540a691d153064dc47a4db2504587a75eae07bf1d73f7a596ebc73c04" +dependencies = [ + "matrixmultiply", + "num-complex 0.3.1", "num-integer", "num-traits", "rawpointer", @@ -266,6 +279,15 @@ dependencies = [ "num-traits", ] +[[package]] +name = "num-complex" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "747d632c0c558b87dbabbe6a82f3b4ae03720d0646ac5b7b4dae89394be5f2c5" +dependencies = [ + "num-traits", +] + [[package]] name = "num-integer" version = "0.1.44" @@ -303,8 +325,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 +546,7 @@ version = "0.8.0" dependencies = [ "fixedbitset", "hashbrown", - "ndarray", + "ndarray 0.14.0", "numpy", "petgraph", "pyo3", diff --git a/Cargo.toml b/Cargo.toml index 6fa1831bc2..347948f685 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ version = "0.9" features = ["rayon"] [dependencies.ndarray] -version = "^0.13.0" +version = "^0.14.0" features = ["rayon"] [profile.release]