[package]
edition = "2021"
name = "agentwerk"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimal Rust crate that gives any application agentic capabilities."
readme = "README.md"
keywords = [
"agent",
"llm",
"ai",
"tools",
"agentic",
]
categories = [
"api-bindings",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/canvascomputing/agentwerk"
[lib]
name = "agentwerk"
path = "src/lib.rs"
[[test]]
name = "bash_usage"
path = "tests/bash_usage.rs"
[[test]]
name = "file_exploration"
path = "tests/file_exploration.rs"
[[test]]
name = "multi_agent_spawn"
path = "tests/multi_agent_spawn.rs"
[[test]]
name = "pipeline"
path = "tests/pipeline.rs"
[[test]]
name = "project_planning"
path = "tests/project_planning.rs"
[dependencies.futures-util]
version = "0.3"
[dependencies.libc]
version = "0.2"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"stream",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"fs",
"io-util",
"process",
"time",
"signal",
]
[dev-dependencies.tempfile]
version = "3"