[package]
edition = "2021"
name = "agentcore"
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 = false
keywords = [
"agent",
"llm",
"ai",
"tools",
"agentic",
]
categories = [
"api-bindings",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/canvascomputing/agentcore"
[lib]
name = "agentcore"
path = "src/lib.rs"
[[test]]
name = "agent_with_tools"
path = "tests/agent_with_tools.rs"
[[test]]
name = "code_review"
path = "tests/code_review.rs"
[[test]]
name = "llm_provider_call"
path = "tests/llm_provider_call.rs"
[[test]]
name = "multi_agent_spawn"
path = "tests/multi_agent_spawn.rs"
[[test]]
name = "project_planning"
path = "tests/project_planning.rs"
[[test]]
name = "quick_start"
path = "tests/quick_start.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"