graphflow-stream 0.1.0

Token-level streaming and event bus for LangGraph-style Rust agent graphs
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"
name = "graphflow-stream"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Token-level streaming and event bus for LangGraph-style Rust agent graphs"
readme = "README.md"
keywords = [
    "llm",
    "agent",
    "streaming",
    "graph",
    "rig",
]
categories = [
    "asynchronous",
    "concurrency",
]
license = "MIT"
repository = "https://github.com/thaicn1712/graphflow-stream"

[lib]
name = "graphflow_stream"
path = "graphflow_stream/stream.rs"

[[example]]
name = "full_graph"
path = "examples/full_graph.rs"

[[example]]
name = "sse_axum"
path = "examples/sse_axum.rs"

[[example]]
name = "websocket_axum"
path = "examples/websocket_axum.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

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

[dependencies.futures-core]
version = "0.3"

[dependencies.graph-flow]
version = "0.6"

[dependencies.tokio]
version = "1"
features = [
    "sync",
    "rt",
    "macros",
]

[dependencies.tokio-stream]
version = "0.1"

[dev-dependencies.axum]
version = "0.8"
features = ["ws"]

[dev-dependencies.tokio]
version = "1"
features = ["full"]

[dev-dependencies.tokio-stream]
version = "0.1"
features = ["sync"]