[package]
edition = "2024"
rust-version = "1.95"
name = "adk-agent"
version = "2.0.0"
authors = ["James Karanja Maina <james.karanja@zavora.ai>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent implementations for Rust Agent Development Kit (ADK-Rust, LLM, Custom, Workflow agents)"
documentation = "https://docs.rs/adk-agent"
readme = "README.md"
keywords = [
"ai",
"agent",
"adk",
"llm",
"workflow",
]
categories = [
"api-bindings",
"asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/zavora-ai/adk-rust"
[features]
ambient = [
"dep:cron",
"dep:notify",
"dep:axum",
"dep:tokio-util",
]
codeact = []
coding = ["dep:adk-devtools"]
default = ["skills"]
enhanced-plugins = ["dep:adk-plugin"]
guardrails = ["adk-guardrail"]
record-payloads = []
sandbox = [
"dep:adk-sandbox",
"adk-sandbox/workspace",
]
skills = ["dep:adk-skill"]
[lib]
name = "adk_agent"
path = "src/lib.rs"
[[example]]
name = "agent_control_demo"
path = "examples/agent_control_demo.rs"
[[example]]
name = "gemini_openai_compat_agent"
path = "examples/gemini_openai_compat_agent.rs"
[[example]]
name = "state_management_demo"
path = "examples/state_management_demo.rs"
[[test]]
name = "agent_callback_tests"
path = "tests/agent_callback_tests.rs"
[[test]]
name = "agent_property_tests"
path = "tests/agent_property_tests.rs"
[[test]]
name = "ambient_execution_tests"
path = "tests/ambient_execution_tests.rs"
[[test]]
name = "callback_integration_test"
path = "tests/callback_integration_test.rs"
[[test]]
name = "callback_integration_tests"
path = "tests/callback_integration_tests.rs"
[[test]]
name = "coding_tests"
path = "tests/coding_tests.rs"
[[test]]
name = "compaction_tests"
path = "tests/compaction_tests.rs"
[[test]]
name = "context_propagation_test"
path = "tests/context_propagation_test.rs"
[[test]]
name = "custom_agent_tests"
path = "tests/custom_agent_tests.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "interactions_runtime_integration_tests"
path = "tests/interactions_runtime_integration_tests.rs"
[[test]]
name = "llm_agent_tests"
path = "tests/llm_agent_tests.rs"
[[test]]
name = "mcp_integration_test"
path = "tests/mcp_integration_test.rs"
[[test]]
name = "multi_agent_test"
path = "tests/multi_agent_test.rs"
[[test]]
name = "parallel_concurrency_tests"
path = "tests/parallel_concurrency_tests.rs"
[[test]]
name = "provider_error_tests"
path = "tests/provider_error_tests.rs"
[[test]]
name = "review_regression_tests"
path = "tests/review_regression_tests.rs"
[[test]]
name = "secret_identity_tests"
path = "tests/secret_identity_tests.rs"
[[test]]
name = "shared_state_integration_tests"
path = "tests/shared_state_integration_tests.rs"
[[test]]
name = "streaming_test"
path = "tests/streaming_test.rs"
[[test]]
name = "test_context"
path = "tests/test_context.rs"
[[test]]
name = "tool_callback_tests"
path = "tests/tool_callback_tests.rs"
[[test]]
name = "tool_confirmation_tests"
path = "tests/tool_confirmation_tests.rs"
[[test]]
name = "tool_progress_bounds_tests"
path = "tests/tool_progress_bounds_tests.rs"
[[test]]
name = "webhook_trust_boundary_tests"
path = "tests/webhook_trust_boundary_tests.rs"
[[test]]
name = "workflow_tests"
path = "tests/workflow_tests.rs"
[dependencies.adk-core]
version = "2.0.0"
[dependencies.adk-devtools]
version = "2.0.0"
optional = true
[dependencies.adk-guardrail]
version = "2.0.0"
optional = true
[dependencies.adk-plugin]
version = "2.0.0"
optional = true
[dependencies.adk-sandbox]
version = "2.0.0"
optional = true
[dependencies.adk-skill]
version = "2.0.0"
optional = true
[dependencies.adk-telemetry]
version = "2.0.0"
[dependencies.async-stream]
version = "0.3"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.8"
optional = true
[dependencies.chrono]
version = "0.4.44"
features = ["serde"]
[dependencies.cron]
version = "0.15"
optional = true
[dependencies.futures]
version = "0.3"
[dependencies.jsonschema]
version = "0.47"
default-features = false
[dependencies.notify]
version = "8"
optional = true
[dependencies.schemars]
version = "1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.40"
features = [
"time",
"sync",
"rt",
"macros",
]
default-features = false
[dependencies.tokio-util]
version = "0.7"
optional = true
[dependencies.tracing]
version = "0.1"
[dev-dependencies.anyhow]
version = "1"
[dev-dependencies.dotenvy]
version = "0.15"
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.reqwest]
version = "0.12"
features = [
"json",
"stream",
"rustls-tls-native-roots",
"multipart",
]
default-features = false
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1.40"
features = [
"rt",
"macros",
]
default-features = false