[package]
edition = "2021"
rust-version = "1.75"
name = "agnt"
version = "0.3.2"
authors = ["doop"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A dense, sync-first Rust agent engine — multi-backend inference, parallel tool dispatch, SQLite persistence, streaming. Flagship meta-crate."
homepage = "https://github.com/hmbldv/agnt"
documentation = "https://docs.rs/agnt"
readme = "README.md"
keywords = [
"agent",
"llm",
"ai",
"ollama",
"anthropic",
]
categories = ["api-bindings"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/hmbldv/agnt"
[features]
default = [
"net",
"store",
"tools",
"macros",
]
macros = ["dep:agnt-macros"]
mcp = ["dep:agnt-mcp"]
net = ["dep:agnt-net"]
store = ["dep:agnt-store"]
tools = ["dep:agnt-tools"]
tools-bwrap-shell = [
"tools-shell",
"agnt-tools/bwrap-shell",
]
tools-shell = [
"tools",
"agnt-tools/shell",
]
[lib]
name = "agnt"
path = "src/lib.rs"
[dependencies.agnt-core]
version = "0.3"
[dependencies.agnt-macros]
version = "0.3"
optional = true
[dependencies.agnt-mcp]
version = "0.3"
optional = true
[dependencies.agnt-net]
version = "0.3"
optional = true
[dependencies.agnt-store]
version = "0.3"
optional = true
[dependencies.agnt-tools]
version = "0.3"
optional = true