[package]
edition = "2021"
rust-version = "1.95"
name = "quaynor"
version = "2.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lightweight local AI inference engine: load GGUF models and chat on-device with streaming, tool calling, embeddings, and reranking"
homepage = "https://www.quaynor.site"
documentation = "https://docs.rs/quaynor"
readme = "README.md"
keywords = [
"llm",
"llama",
"gguf",
"inference",
"ai",
]
categories = [
"science",
"api-bindings",
"text-processing",
]
license = "MIT"
repository = "https://github.com/iBz-04/quaynor"
[lib]
name = "quaynor"
path = "src/lib.rs"
[[example]]
name = "chat"
path = "examples/chat.rs"
[dependencies.ahash]
version = "0.8.12"
[dependencies.bashkit]
version = "0.1.10"
[dependencies.chrono]
version = "0.4.39"
[dependencies.encoding_rs]
version = "0.8.34"
[dependencies.futures]
version = "0.3.31"
[dependencies.get-size2]
version = ">=0.10, <0.10.2"
[dependencies.indexmap]
version = "2.13.0"
[dependencies.lazy_static]
version = "1.5.0"
[dependencies.llama-cpp-2]
version = "=0.1.154"
features = [
"openmp",
"android-static-stdcxx",
"mtmd",
"common",
]
default-features = false
[dependencies.minijinja]
version = "2.11.0"
features = [
"builtins",
"json",
"loader",
]
[dependencies.minijinja-contrib]
version = "2.11.0"
features = ["pycompat"]
[dependencies.monty]
version = "0.0.21"
[dependencies.monty-types]
version = "0.0.21"
[dependencies.nom]
version = "8.0.0"
[dependencies.quaynor-gbnf]
version = "0.1.0"
[dependencies.quaynor-gbnf-macro]
version = "0.1.0"
[dependencies.rand]
version = "0.9.3"
[dependencies.regex]
version = "1.11.1"
[dependencies.serde]
version = "1.0.215"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.140"
[dependencies.thiserror]
version = "2.0.3"
[dependencies.tokio]
version = "1.43.0"
features = [
"sync",
"rt",
"rt-multi-thread",
"macros",
]
[dependencies.tokio-stream]
version = "0.1.17"
[dependencies.tracing]
version = "0.1.41"
features = ["log"]
[dependencies.tracing-subscriber]
version = "0.3.19"
[dependencies.ureq]
version = "3"
features = ["rustls"]
[target.'cfg(all(not(target_os = "macos"), not(target_os = "ios"), not(target_os = "android"), any(target_arch = "x86_64", target_arch = "x86", target_arch = "aarch64")))'.dependencies.llama-cpp-2]
version = "=0.1.154"
features = [
"openmp",
"vulkan",
"mtmd",
"android-static-stdcxx",
"common",
]
default-features = false
[target.'cfg(not(target_os = "android"))'.dependencies.dirs]
version = "6"
[target.'cfg(target_os = "android")'.dependencies.libc]
version = "0.2"