[package]
edition = "2021"
rust-version = "1.88"
name = "synaptic-graph"
version = "0.2.9"
authors = ["Synaptic Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "LangGraph-style state machine: StateGraph, CompiledGraph, ReAct agent, checkpointing"
homepage = "https://dnw3.github.io/synaptic/"
readme = "README.md"
license = "MIT"
repository = "https://github.com/dnw3/synaptic"
[lib]
name = "synaptic_graph"
path = "src/lib.rs"
[[test]]
name = "builder"
path = "tests/builder.rs"
[[test]]
name = "cache"
path = "tests/cache.rs"
[[test]]
name = "checkpoint"
path = "tests/checkpoint.rs"
[[test]]
name = "command"
path = "tests/command.rs"
[[test]]
name = "compiled"
path = "tests/compiled.rs"
[[test]]
name = "deferred"
path = "tests/deferred.rs"
[[test]]
name = "get_state"
path = "tests/get_state.rs"
[[test]]
name = "graph_edge_cases"
path = "tests/graph_edge_cases.rs"
[[test]]
name = "interrupt"
path = "tests/interrupt.rs"
[[test]]
name = "prebuilt"
path = "tests/prebuilt.rs"
[[test]]
name = "react_agent_options"
path = "tests/react_agent_options.rs"
[[test]]
name = "send"
path = "tests/send.rs"
[[test]]
name = "state"
path = "tests/state.rs"
[[test]]
name = "stream"
path = "tests/stream.rs"
[[test]]
name = "stream_modes"
path = "tests/stream_modes.rs"
[[test]]
name = "supervisor"
path = "tests/supervisor.rs"
[[test]]
name = "swarm"
path = "tests/swarm.rs"
[[test]]
name = "tool_node"
path = "tests/tool_node.rs"
[[test]]
name = "tools_condition"
path = "tests/tools_condition.rs"
[[test]]
name = "visualization"
path = "tests/visualization.rs"
[dependencies.async-stream]
version = "0.3"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.futures]
version = "0.3"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"stream",
"query",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.synaptic-core]
version = "0.2"
[dependencies.synaptic-macros]
version = "0.2"
[dependencies.synaptic-middleware]
version = "0.2"
[dependencies.synaptic-store]
version = "0.2"
[dependencies.synaptic-tools]
version = "0.2"
[dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.synaptic-models]
version = "0.2"
[dev-dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
]