From fe3a0ac914ca4b567b20e020718f647a15faa007 Mon Sep 17 00:00:00 2001 From: Murph Murphy Date: Tue, 3 Sep 2024 12:35:49 -0600 Subject: [PATCH] Bump ndarray for trait compat --- Cargo.lock | 17 ++--------------- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ae98e59..d8ad72e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1025,7 +1025,7 @@ dependencies = [ "ironcore-documents", "itertools 0.13.0", "lazy_static", - "ndarray 0.15.6", + "ndarray", "ndarray-rand", "proptest", "protobuf", @@ -1211,19 +1211,6 @@ dependencies = [ "windows-sys 0.52.0", ] -[[package]] -name = "ndarray" -version = "0.15.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32" -dependencies = [ - "matrixmultiply", - "num-complex", - "num-integer", - "num-traits", - "rawpointer", -] - [[package]] name = "ndarray" version = "0.16.1" @@ -1245,7 +1232,7 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f093b3db6fd194718dcdeea6bd8c829417deae904e3fcc7732dabcd4416d25d8" dependencies = [ - "ndarray 0.16.1", + "ndarray", "rand", "rand_distr", ] diff --git a/Cargo.toml b/Cargo.toml index b2561c4..dbc59f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ futures = "0.3.29" hmac = { version = "0.12.1", features = ["std"] } ironcore-documents = "0.2.1" itertools = "0.13" -ndarray = "0.15.6" +ndarray = "0.16.0" ndarray-rand = "0.15.0" protobuf = { version = "3.3", features = ["with-bytes"] } rand = "0.8.5"