onnx-runtime-loader 0.1.0-dev.5

ONNX protobuf loader for the ORT 2.0 runtime: model parsing, weight mmap, and shape inference into onnx-runtime-ir
Documentation
[package]
name = "onnx-runtime-loader"
description = "ONNX protobuf loader for the ORT 2.0 runtime: model parsing, weight mmap, and shape inference into onnx-runtime-ir"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
keywords = ["onnx", "loader", "protobuf", "inference", "runtime"]
categories = ["science", "parser-implementations"]

[dependencies]
onnx-runtime-ir = { workspace = true }
onnx-runtime-shape-inference = { workspace = true }
onnx-runtime-tracer = { workspace = true }
thiserror = { workspace = true }
prost = "0.13"
prost-reflect = { version = "0.14", features = ["text-format"] }
memmap2 = "0.9"

[build-dependencies]
prost = "0.13"
prost-build = "0.13"
# Pure-Rust protobuf compiler: lets `build.rs` generate the prost types without
# requiring a system `protoc` binary to be installed.
protox = "0.7"

[dev-dependencies]
prost = "0.13"