examples: reduce dependencies for CV examples

This commit is contained in:
Carson M.
2026-02-05 20:29:16 -06:00
parent e5e2551094
commit de97dfc79e
4 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ ort = { path = "../../", features = [ "cuda", "fetch-models" ] }
cudarc = "0.12"
anyhow = "1.0"
ndarray = "0.17"
image = "0.25"
image = { version = "0.25", default-features = false, features = [ "jpeg" ] }
tracing = "0.1"
show-image = { version = "0.14", features = [ "image", "raqote" ] }
tracing-subscriber = { version = "0.3", default-features = false, features = [ "env-filter", "fmt" ] }

View File

@@ -8,7 +8,7 @@ edition = "2024"
ort = { path = "../../", features = [ "fetch-models" ] }
ndarray = "0.17"
tracing-subscriber = { version = "0.3", default-features = false, features = [ "env-filter", "fmt" ] }
image = "0.25"
image = { version = "0.25", default-features = false, features = [ "jpeg" ] }
tracing = "0.1"
show-image = { version = "=0.14.0", features = [ "image", "raqote" ] }

View File

@@ -7,7 +7,7 @@ edition = "2024"
[dependencies]
ort = { path = "../../" }
anyhow = "1.0"
image = "0.25"
image = { version = "0.25", default-features = false, features = [ "jpeg" ] }
ndarray = "0.17"
tokio = { version = "1", features = ["full"] }
tokenizers = { version = "0.21", default-features = false, features = [ "onig" ] }

View File

@@ -8,7 +8,7 @@ edition = "2024"
ort = { path = "../../", features = [ "fetch-models" ] }
ndarray = "0.17"
tracing-subscriber = { version = "0.3", default-features = false, features = [ "env-filter", "fmt" ] }
image = "0.25"
image = { version = "0.25", default-features = false, features = [ "jpeg" ] }
show-image = { version = "=0.14.0", features = [ "image", "raqote" ] }
raqote = { version = "0.8", default-features = false }
tracing = "0.1"