Skip to content

Commit 8e5ccd5

Browse files
committed
Merge branch 'update_ndarray' into develop
2 parents 8ca690b + 3e97066 commit 8e5ccd5

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ categories = ["science", "science::robotics", "multimedia", "multimedia::images"
1111
edition = "2018"
1212

1313
[dependencies]
14-
ndarray = { version = "0.13", default-features = false }
15-
ndarray-stats = { version = "0.3", default-features = false }
16-
ndarray-linalg = { version = "0.12", default-features = false }
14+
ndarray = { version = "0.14", default-features = false }
15+
ndarray-stats = { version = "0.4", default-features = false }
16+
ndarray-linalg = { version = "0.13", default-features = false }
1717
noisy_float = { version = "0.1", default-features = false }
1818
num-traits = { version = "0.2", default-features = false }
1919

2020
[dev-dependencies]
21-
ndarray-rand = "0.11.0"
22-
rand = "0.7"
21+
ndarray-rand = "0.14.0"
22+
rand = "0.8"
2323
assert_approx_eq = "1.1.0"
24-
noisy_float = "0.1.11"
24+
noisy_float = "0.1"
2525
png = "0.16"
26-
ndarray-linalg = { version = "0.12", features = ["intel-mkl"] }
26+
ndarray-linalg = { version = "0.13", features = ["intel-mkl"] }

src/transform/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use crate::core::{ColourModel, Image, ImageBase};
22
use crate::transform::affine::translation;
33
use ndarray::{array, prelude::*, s, Data};
4-
use ndarray_linalg::solve::Inverse;
4+
use ndarray_linalg::*;
55
use num_traits::{Num, NumAssignOps};
66
use std::cmp::{max, min};
77

0 commit comments

Comments
 (0)