[package]
name = "menta"
version = "0.0.5"
description = "Minimal Rust library for non-UI LLM and AI primitives"
edition = "2024"
license = "MIT OR Apache-2.0"
readme = "../../README.md"
repository = "https://github.com/KABBOUCHI/menta"
homepage = "https://github.com/KABBOUCHI/menta"
documentation = "https://docs.rs/menta"
keywords = ["llm", "ai", "openai", "tools", "embeddings"]
categories = ["api-bindings", "development-tools"]
[dependencies]
async-stream = "0.3"
futures-util = "0.3"
inventory = "0.3"
menta_derive = { package = "menta_derive", version = "0.0.5", path = "../derive" }
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls", "stream"] }
schemars = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
urlencoding = "2"
[dev-dependencies]
chrono = { version = "0.4", default-features = false, features = ["clock"] }
glob = "0.3"
regex = "1"
rustyline = "14"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
walkdir = "2"