modelc 0.1.2

Compile model weight files to standalone executable binaries
Documentation
[package]
name = "modelc"
version = "0.1.2"
edition = "2024"
description = "Compile model weight files to standalone executable binaries"
license = "Apache-2.0"
repository = "https://github.com/yingkitw/modelc"
homepage = "https://github.com/yingkitw/modelc"
documentation = "https://docs.rs/modelc"
build = "build.rs"

[[bin]]
name = "modelc"
path = "src/bin/modelc.rs"

[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
safetensors = "0.4"
byteorder = "1"
tempfile = "3"
half = "2"
onnx-rs = "0.1.2"
zip = { version = "2", default-features = false, features = ["deflate"] }
axum = "0.8"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
dirs = "6"
zstd = "0.13"

[target.'cfg(target_os = "macos")'.dependencies]
metal = "0.29"