agentwerk 0.1.0

A minimal Rust crate that gives any application agentic capabilities.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"