Skip to content

Commit f74d5d8

Browse files
committed
Update to rten v0.23.0
This release adds support for loading ONNX files directly. Ocrs doesn't need this capability at the moment (all published models are in rten format), so enable the .rten format only to reduce build time a little. Users using Ocrs with custom models may find it useful to enable the ONNX format by adding rten as a dependency to their downstream crate, with the `onnx_format` feature enabled.
1 parent 0c68086 commit f74d5d8

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

Cargo.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ members = [
66
]
77

88
[workspace.dependencies]
9-
rten = { version = "0.22.0" }
10-
rten-imageproc = { version = "0.22.0" }
11-
rten-tensor = { version = "0.22.1" }
9+
rten = { version = "0.23.0", default-features = false, features = ["rten_format"] }
10+
rten-imageproc = { version = "0.23.0" }
11+
rten-tensor = { version = "0.23.0" }

0 commit comments

Comments
 (0)