Skip to content

Commit 805f6ef

Browse files
committed
Fix: ndarray 0.15.2 breaks the build, cap it
1 parent cbf153c commit 805f6ef

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

onnxruntime/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ required-features = ["model-fetching"]
2222
onnxruntime-sys = { version = "0.0.13", path = "../onnxruntime-sys" }
2323

2424
lazy_static = "1.4"
25-
ndarray = "0.15"
25+
# FIXME: ndarray >=0.15.2 breaks the build
26+
ndarray = ">=0.15.0,<0.15.2"
2627
thiserror = "1.0"
2728
tracing = "0.1"
2829

0 commit comments

Comments
 (0)