diff --git a/scpn-mif-rs/Cargo.lock b/scpn-mif-rs/Cargo.lock index c57fe95..b7323ea 100644 --- a/scpn-mif-rs/Cargo.lock +++ b/scpn-mif-rs/Cargo.lock @@ -555,7 +555,7 @@ dependencies = [ "crossbeam", "mif-core", "mif-types", - "ndarray", + "ndarray 0.17.2", "proptest", "serde", "thiserror", @@ -566,7 +566,7 @@ name = "mif-core" version = "0.0.1" dependencies = [ "mif-types", - "ndarray", + "ndarray 0.17.2", "proptest", "serde", "thiserror", @@ -623,7 +623,7 @@ dependencies = [ "mif-core", "mif-types", "nalgebra", - "ndarray", + "ndarray 0.17.2", "proptest", "rayon", "serde", @@ -694,6 +694,21 @@ dependencies = [ "rawpointer", ] +[[package]] +name = "ndarray" +version = "0.17.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d" +dependencies = [ + "matrixmultiply", + "num-complex", + "num-integer", + "num-traits", + "portable-atomic", + "portable-atomic-util", + "rawpointer", +] + [[package]] name = "num-bigint" version = "0.4.6" @@ -749,7 +764,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "29f1dee9aa8d3f6f8e8b9af3803006101bb3653866ef056d530d53ae68587191" dependencies = [ "libc", - "ndarray", + "ndarray 0.16.1", "num-complex", "num-integer", "num-traits", diff --git a/scpn-mif-rs/Cargo.toml b/scpn-mif-rs/Cargo.toml index 1cb6e0a..742ae15 100644 --- a/scpn-mif-rs/Cargo.toml +++ b/scpn-mif-rs/Cargo.toml @@ -30,7 +30,7 @@ readme = "../README.md" [workspace.dependencies] # Numerical core -ndarray = "0.16" +ndarray = "0.17" ndarray-rand = "0.15" faer = "0.20" nalgebra = "0.33"