[package]
edition = "2021"
name = "hanzo-engine"
version = "0.6.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Hanzo Engine - canonical inference + embedding engine for the Hanzo stack"
homepage = "https://github.com/hanzoai/engine"
readme = false
license = "MIT"
repository = "https://github.com/hanzoai/engine"
[features]
cuda = ["mistralrs-core/cuda"]
default = ["metal"]
flash-attn = ["mistralrs-core/flash-attn"]
metal = ["mistralrs-core/metal"]
mkl = ["mistralrs-core/mkl"]
no-cuda = []
real-model = []
[lib]
name = "hanzo_engine"
path = "src/lib.rs"
[[bin]]
name = "hanzo-engine"
path = "src/bin/hanzo-engine.rs"
[[test]]
name = "api"
path = "tests/api.rs"
[[test]]
name = "mistral"
path = "tests/mistral.rs"
[dependencies.anyhow]
version = "1.0.100"
[dependencies.mistralrs]
version = "0.8.1"
[dependencies.mistralrs-core]
version = "0.8.1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.47"
features = [
"rt-multi-thread",
"macros",
]