chore: update ndarray to 0.16

This commit is contained in:
Carson M.
2024-08-04 12:24:48 -05:00
parent 733b7fa329
commit 069ddfdd2c
10 changed files with 20 additions and 20 deletions

View File

@@ -83,7 +83,7 @@ cann = [ "ort-sys/cann" ]
qnn = [ "ort-sys/qnn" ]
[dependencies]
ndarray = { version = "0.15", optional = true }
ndarray = { version = "0.16", optional = true }
thiserror = "1.0"
ort-sys = { version = "2.0.0-rc.4", path = "ort-sys" }
libloading = { version = "0.8", optional = true }

View File

@@ -6,8 +6,8 @@ edition = "2021"
[dependencies]
ort = { path = "../../", features = [ "fetch-models" ] }
ndarray = "0.15"
tokenizers = { version = ">=0.13.4", default-features = false, features = [ "onig" ] }
ndarray = "0.16"
tokenizers = { version = "0.19", default-features = false, features = [ "onig" ] }
rand = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", default-features = false, features = [ "env-filter", "fmt" ] }

View File

@@ -5,10 +5,10 @@ edition = "2021"
[dependencies]
ort = { path = "../../", features = [ "cuda", "fetch-models" ] }
cudarc = "0.10"
cudarc = "0.11"
anyhow = "1.0"
ndarray = "0.15"
image = "0.24"
ndarray = "0.16"
image = "0.25"
tracing = "0.1"
show-image = { version = "0.13", features = [ "image", "raqote" ] }
show-image = { version = "0.14", features = [ "image", "raqote" ] }
tracing-subscriber = { version = "0.3", features = [ "fmt" ] }

View File

@@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
ort = { path = "../../", features = [ "fetch-models" ] }
ndarray = "0.15"
ndarray = "0.16"
[features]
load-dynamic = [ "ort/load-dynamic" ]

View File

@@ -6,8 +6,8 @@ edition = "2021"
[dependencies]
ort = { path = "../../", features = [ "fetch-models" ] }
ndarray = "0.15"
tokenizers = { version = ">=0.13.4", default-features = false, features = [ "onig" ] }
ndarray = "0.16"
tokenizers = { version = "0.19", default-features = false, features = [ "onig" ] }
rand = "0.8"
tracing-subscriber = { version = "0.3", default-features = false, features = [ "env-filter", "fmt" ] }

View File

@@ -6,11 +6,11 @@ edition = "2021"
[dependencies]
ort = { path = "../../" }
ndarray = "0.15"
ndarray = "0.16"
tracing-subscriber = { version = "0.3", default-features = false, features = [ "env-filter", "fmt" ] }
image = "0.24"
image = "0.25"
tracing = "0.1"
show-image = { version = "0.13", features = [ "image", "raqote" ] }
show-image = { version = "0.14", features = [ "image", "raqote" ] }
[features]
load-dynamic = [ "ort/load-dynamic" ]

View File

@@ -6,8 +6,8 @@ edition = "2021"
[dependencies]
ort = { path = "../../", features = [ "fetch-models" ] }
ndarray = "0.15"
tokenizers = { version = ">=0.13.4", default-features = false, features = [ "onig" ] }
ndarray = "0.16"
tokenizers = { version = "0.19", default-features = false, features = [ "onig" ] }
tracing-subscriber = { version = "0.3", default-features = false, features = [ "env-filter", "fmt" ] }
[features]

View File

@@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
ort = { path = "../../", features = [ "training" ] }
ndarray = "0.15"
ndarray = "0.16"
tokenizers = { version = ">=0.13.4", default-features = false, features = [ "onig" ] }
rand = "0.8"
simd-json = "0.13"

View File

@@ -10,7 +10,7 @@ crate-type = ["cdylib"]
[dependencies]
ort = { path = "../../" }
ndarray = "0.15"
ndarray = "0.16"
wasm-bindgen = "0.2.92"
web-sys = "0.3"
tracing = "0.1"

View File

@@ -6,10 +6,10 @@ edition = "2021"
[dependencies]
ort = { path = "../../" }
ndarray = "0.15"
ndarray = "0.16"
tracing-subscriber = { version = "0.3", default-features = false, features = [ "env-filter", "fmt" ] }
image = "0.24"
show-image = { version = "0.13", features = [ "image", "raqote" ] }
image = "0.25"
show-image = { version = "0.14", features = [ "image", "raqote" ] }
raqote = { version = "0.8", default-features = false }
ureq = "2.1"
tracing = "0.1"