adk-graph 0.4.0

Graph-based workflow orchestration for ADK-Rust agents
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 = "2024"
rust-version = "1.85.0"
name = "adk-graph"
version = "0.4.0"
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.4.0"

[dependencies.async-stream]
version = "0.3"

[dependencies.async-trait]
version = "0.1"

[dependencies.chrono]
version = "0.4.44"
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 = ["sync"]
default-features = false

[dependencies.tracing]
version = "0.1"

[dependencies.uuid]
version = "1.10"
features = [
    "v4",
    "serde",
]

[dev-dependencies.tokio]
version = "1.40"
features = [
    "rt",
    "macros",
    "test-util",
]
default-features = false