liquid-edge 0.2.3

Minimal edge inference runtime for LLMs
Documentation
[dependencies.async-trait]
version = "0.1.86"

[dependencies.chrono]
default-features = false
features = ["serde", "clock"]
version = "0.4"

[dependencies.log]
version = "0.4"

[dependencies.serde]
features = ["derive"]
version = "1.0.218"

[dependencies.serde_json]
version = "1.0.139"

[dependencies.thiserror]
version = "2.0.11"

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

[dev-dependencies.tokio-test]
version = "0.4"

[features]
cuda = ["onnx", "ort/cuda"]
default = ["onnx"]
onnx = ["dep:ort", "dep:ndarray"]

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["science", "algorithms"]
description = "Minimal edge inference runtime for LLMs"
edition = "2021"
keywords = ["inference", "llm", "edge", "runtime"]
license = "MIT OR Apache-2.0"
name = "liquid-edge"
readme = "README.md"
repository = "https://github.com/liquidos-ai/AutoAgents"
version = "0.2.3"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.ndarray]
optional = true
version = "0.16"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.num_cpus]
version = "1.16"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.ort]
features = ["copy-dylibs", "half", "std"]
optional = true
version = "=2.0.0-rc.10"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.rand]
version = "0.9.2"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
features = ["full", "rt", "sync", "fs"]
version = "1.43.0"

[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
features = ["wasm_js"]
optional = true
version = "0.3.3"

[target.'cfg(target_arch = "wasm32")'.dependencies.ndarray]
optional = true
version = "0.16"

[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
optional = true
version = "0.2"

[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen-futures]
optional = true
version = "0.4"