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