runnx 0.3.0

A minimal, verifiable ONNX runtime implementation in Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.85"
name = "runnx"
version = "0.3.0"
authors = ["João Galego <jgalego1990@gmail.com>"]
build = "build.rs"
include = [
    "src/**/*",
    "build.rs",
    "Cargo.toml",
    "README.md",
    "LICENSE-*",
    "CHANGELOG.md",
    "third_party/onnx/onnx/onnx.proto",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimal, verifiable ONNX runtime implementation in Rust"
readme = "README.md"
keywords = [
    "onnx",
    "machine-learning",
    "neural-network",
    "runtime",
    "inference",
]
categories = [
    "science",
    "mathematics",
    "algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/JGalego/runnx"

[features]
async = ["tokio"]
blas = [
    "dep:cblas",
    "dep:blas-src",
    "dep:openblas-src",
]
default = []
formal-verification = []
naive-conv = []
parallel = ["rayon"]

[lib]
name = "runnx"
path = "src/lib.rs"

[[bin]]
name = "runnx-runner"
path = "src/bin/runner.rs"

[dependencies.blas-src]
version = "0.10"
features = ["openblas"]
optional = true

[dependencies.cblas]
version = "0.4"
optional = true

[dependencies.env_logger]
version = "0.11"

[dependencies.log]
version = "0.4"

[dependencies.ndarray]
version = "0.16"
features = ["serde"]

[dependencies.openblas-src]
version = "0.10"
features = ["system"]
optional = true

[dependencies.prost]
version = "0.14.1"

[dependencies.rayon]
version = "1.10"
optional = true

[dependencies.serde]
version = "1.0"
features = [
    "derive",
    "rc",
]

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
version = "1.0"
features = ["full"]
optional = true

[dependencies.wide]
version = "0.7"

[dev-dependencies.criterion]
version = "0.7.0"
features = ["html_reports"]

[dev-dependencies.image]
version = "=0.25.5"

[dev-dependencies.imageproc]
version = "0.25"

[dev-dependencies.proptest]
version = "1.4"

[dev-dependencies.tempfile]
version = "3.8"

[dev-dependencies.tokio]
version = "1.0"
features = [
    "macros",
    "rt",
]

[build-dependencies.prost-build]
version = "0.14.1"