[package]
edition = "2024"
name = "funera"
version = "0.2.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Flexible and security-oriented LLM agent framework for Rust — ReAct loop, tools, skills, middleware, security"
readme = "README.md"
keywords = [
"llm",
"agent",
"framework",
"harness",
]
categories = [
"artificial-intelligence",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/dynamder/funera"
[features]
deepseek = ["funera-orchestrate/deepseek"]
default = [
"tool",
"deepseek",
]
funera-builtin-tools = ["funera-orchestrate/funera-builtin-tools"]
middleware = ["funera-orchestrate/middleware"]
openai = ["funera-orchestrate/openai"]
sandbox = [
"funera-orchestrate/sandbox",
"funera-builtin-tools",
]
security = ["funera-orchestrate/security"]
skill = ["funera-orchestrate/skill"]
tool = ["funera-orchestrate/tool"]
[lib]
name = "funera"
path = "src/lib.rs"
[dependencies.funera-core]
version = "0.2.3"
[dependencies.funera-orchestrate]
version = "0.2.3"