[package]
edition = "2024"
name = "graph-flow"
version = "0.5.0"
authors = ["Alon Agmon"]
build = false
exclude = [
"examples/*",
"target/*",
".git/*",
"tests/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance, type-safe framework for building multi-agent workflow systems in Rust"
homepage = "https://github.com/a-agmon/rs-graph-llm"
documentation = "https://docs.rs/graph-flow"
readme = "README.md"
keywords = [
"ai",
"agents",
"workflow",
"graph",
"llm",
]
categories = [
"science",
"algorithms",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/a-agmon/rs-graph-llm"
resolver = "2"
[features]
default = []
rig = ["dep:rig-core"]
[lib]
name = "graph_flow"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.dashmap]
version = "6.1"
[dependencies.rig-core]
version = "0.32.0"
optional = true
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlx]
version = "0.8.6"
features = [
"runtime-tokio-rustls",
"postgres",
"json",
"macros",
"uuid",
]
[dependencies.thiserror]
version = "2.0.16"
[dependencies.tokio]
version = "1.40"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.10"
features = [
"v4",
"serde",
]