Skip to content

Commit 069ddfd

Browse files
committed
chore: update ndarray to 0.16
1 parent 733b7fa commit 069ddfd

File tree

10 files changed

+20
-20
lines changed

10 files changed

+20
-20
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ cann = [ "ort-sys/cann" ]
8383
qnn = [ "ort-sys/qnn" ]
8484

8585
[dependencies]
86-
ndarray = { version = "0.15", optional = true }
86+
ndarray = { version = "0.16", optional = true }
8787
thiserror = "1.0"
8888
ort-sys = { version = "2.0.0-rc.4", path = "ort-sys" }
8989
libloading = { version = "0.8", optional = true }

examples/async-gpt2-api/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ edition = "2021"
66

77
[dependencies]
88
ort = { path = "../../", features = [ "fetch-models" ] }
9-
ndarray = "0.15"
10-
tokenizers = { version = ">=0.13.4", default-features = false, features = [ "onig" ] }
9+
ndarray = "0.16"
10+
tokenizers = { version = "0.19", default-features = false, features = [ "onig" ] }
1111
rand = "0.8"
1212
tracing = "0.1"
1313
tracing-subscriber = { version = "0.3", default-features = false, features = [ "env-filter", "fmt" ] }

examples/cudarc/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ edition = "2021"
55

66
[dependencies]
77
ort = { path = "../../", features = [ "cuda", "fetch-models" ] }
8-
cudarc = "0.10"
8+
cudarc = "0.11"
99
anyhow = "1.0"
10-
ndarray = "0.15"
11-
image = "0.24"
10+
ndarray = "0.16"
11+
image = "0.25"
1212
tracing = "0.1"
13-
show-image = { version = "0.13", features = [ "image", "raqote" ] }
13+
show-image = { version = "0.14", features = [ "image", "raqote" ] }
1414
tracing-subscriber = { version = "0.3", features = [ "fmt" ] }

examples/custom-ops/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66

77
[dependencies]
88
ort = { path = "../../", features = [ "fetch-models" ] }
9-
ndarray = "0.15"
9+
ndarray = "0.16"
1010

1111
[features]
1212
load-dynamic = [ "ort/load-dynamic" ]

examples/gpt2/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ edition = "2021"
66

77
[dependencies]
88
ort = { path = "../../", features = [ "fetch-models" ] }
9-
ndarray = "0.15"
10-
tokenizers = { version = ">=0.13.4", default-features = false, features = [ "onig" ] }
9+
ndarray = "0.16"
10+
tokenizers = { version = "0.19", default-features = false, features = [ "onig" ] }
1111
rand = "0.8"
1212
tracing-subscriber = { version = "0.3", default-features = false, features = [ "env-filter", "fmt" ] }
1313

examples/modnet/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ edition = "2021"
66

77
[dependencies]
88
ort = { path = "../../" }
9-
ndarray = "0.15"
9+
ndarray = "0.16"
1010
tracing-subscriber = { version = "0.3", default-features = false, features = [ "env-filter", "fmt" ] }
11-
image = "0.24"
11+
image = "0.25"
1212
tracing = "0.1"
13-
show-image = { version = "0.13", features = [ "image", "raqote" ] }
13+
show-image = { version = "0.14", features = [ "image", "raqote" ] }
1414

1515
[features]
1616
load-dynamic = [ "ort/load-dynamic" ]

examples/sentence-transformers/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ edition = "2021"
66

77
[dependencies]
88
ort = { path = "../../", features = [ "fetch-models" ] }
9-
ndarray = "0.15"
10-
tokenizers = { version = ">=0.13.4", default-features = false, features = [ "onig" ] }
9+
ndarray = "0.16"
10+
tokenizers = { version = "0.19", default-features = false, features = [ "onig" ] }
1111
tracing-subscriber = { version = "0.3", default-features = false, features = [ "env-filter", "fmt" ] }
1212

1313
[features]

examples/training/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66

77
[dependencies]
88
ort = { path = "../../", features = [ "training" ] }
9-
ndarray = "0.15"
9+
ndarray = "0.16"
1010
tokenizers = { version = ">=0.13.4", default-features = false, features = [ "onig" ] }
1111
rand = "0.8"
1212
simd-json = "0.13"

examples/webassembly/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ crate-type = ["cdylib"]
1010

1111
[dependencies]
1212
ort = { path = "../../" }
13-
ndarray = "0.15"
13+
ndarray = "0.16"
1414
wasm-bindgen = "0.2.92"
1515
web-sys = "0.3"
1616
tracing = "0.1"

examples/yolov8/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ edition = "2021"
66

77
[dependencies]
88
ort = { path = "../../" }
9-
ndarray = "0.15"
9+
ndarray = "0.16"
1010
tracing-subscriber = { version = "0.3", default-features = false, features = [ "env-filter", "fmt" ] }
11-
image = "0.24"
12-
show-image = { version = "0.13", features = [ "image", "raqote" ] }
11+
image = "0.25"
12+
show-image = { version = "0.14", features = [ "image", "raqote" ] }
1313
raqote = { version = "0.8", default-features = false }
1414
ureq = "2.1"
1515
tracing = "0.1"

0 commit comments

Comments
 (0)