diff --git a/Cargo.lock b/Cargo.lock index 4533e5d8b..d0451553b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2418,7 +2418,7 @@ dependencies = [ "libloading", "lru", "lz4_flex", - "ndarray", + "ndarray 0.17.1", "num", "num-traits", "ordered-float 5.1.0", @@ -3817,6 +3817,21 @@ name = "ndarray" version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841" +dependencies = [ + "matrixmultiply", + "num-complex", + "num-integer", + "num-traits", + "portable-atomic", + "portable-atomic-util", + "rawpointer", +] + +[[package]] +name = "ndarray" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c7c9125e8f6f10c9da3aad044cc918cf8784fa34de857b1aa68038eb05a50a9" dependencies = [ "approx", "matrixmultiply", @@ -4254,7 +4269,7 @@ version = "2.0.0-rc.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1fa7e49bd669d32d7bc2a15ec540a527e7764aec722a45467814005725bcd721" dependencies = [ - "ndarray", + "ndarray 0.16.1", "ort-sys", "smallvec 2.0.0-alpha.10", "tracing", diff --git a/Cargo.toml b/Cargo.toml index 8d3210ffb..a563dc5ae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -119,7 +119,7 @@ libloading = "0.8" lru = "0.16" lz4_flex = "0.11" mime = "0.3" -ndarray = { version = "0.16", features = ["approx"] } # has to match with `ort` +ndarray = { version = "0.17", features = ["approx"] } # has to match with `ort` num = "0.4" num-traits = "0.2" oauth2 = "5.0"