Skip to content

Commit b616ca1

Browse files
committed
ndarray-rblas 0.1.1
1 parent 739b5da commit b616ca1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ndarray-rblas/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ndarray-rblas"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["bluss"]
55
license = "MIT/Apache-2.0"
66

@@ -12,7 +12,7 @@ keywords = ["multidimensional", "matrix", "blas"]
1212

1313
[dependencies]
1414
rblas = "0.0.13"
15-
ndarray = { version = ">= 0.4.2, < 0.5.0-alpha.10", path = ".." }
15+
ndarray = { version = ">= 0.4.9, < 0.6", path = ".." }
1616

1717
[dev-dependencies]
1818
num = { version = "0.1", default-features = false }

ndarray-rblas/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ fn is_inner_contiguous<S, D>(a: &ArrayBase<S, D>) -> bool
110110

111111
/// If the array is not in the standard layout, copy all elements
112112
/// into the standard layout so that the array is C-contiguous.
113+
#[allow(deprecated)] // from_vec_dim
113114
fn ensure_standard_layout<A, S, D>(a: &mut ArrayBase<S, D>)
114115
where S: DataOwned<Elem=A>,
115116
D: Dimension,

0 commit comments

Comments
 (0)