[dependencies.adk-core]
version = "0.2.1"
[dependencies.async-stream]
version = "0.3"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.futures]
version = "0.3"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlx]
features = ["runtime-tokio", "sqlite"]
optional = true
version = "0.8"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
features = ["full"]
version = "1.40"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
features = ["v4", "serde"]
version = "1.10"
[dev-dependencies.tokio]
features = ["full", "test-util"]
version = "1.40"
[features]
default = []
full = ["sqlite"]
sqlite = ["sqlx"]
[lib]
name = "adk_graph"
path = "src/lib.rs"
[package]
authors = ["James Karanja Maina <james.karanja@zavora.ai>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["science", "asynchronous"]
description = "Graph-based workflow orchestration for ADK-Rust agents"
documentation = "https://docs.rs/adk-graph"
edition = "2024"
keywords = ["ai", "agents", "workflow", "graph", "langgraph"]
license = "Apache-2.0"
name = "adk-graph"
readme = "README.md"
repository = "https://github.com/zavora-ai/adk-rust"
resolver = "2"
rust-version = "1.85.0"
version = "0.2.1"
[[test]]
name = "checkpoint_tests"
path = "tests/checkpoint_tests.rs"
[[test]]
name = "edge_tests"
path = "tests/edge_tests.rs"
[[test]]
name = "execution_tests"
path = "tests/execution_tests.rs"
[[test]]
name = "graph_tests"
path = "tests/graph_tests.rs"
[[test]]
name = "node_tests"
path = "tests/node_tests.rs"
[[test]]
name = "state_tests"
path = "tests/state_tests.rs"