[package]
edition = "2024"
rust-version = "1.95"
name = "entelix-graph"
version = "0.5.5"
authors = ["junyeong-ai"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "entelix control-flow contract — StateGraph<S>, Reducer, conditional/Send edges, subgraph, Checkpointer trait, interrupt API"
documentation = "https://docs.rs/entelix"
readme = "README.md"
keywords = [
"ai",
"agent",
"llm",
"graph",
"runtime",
]
categories = [
"api-bindings",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/junyeong-ai/entelix"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "entelix_graph"
path = "src/lib.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "checkpoint"
path = "tests/checkpoint.rs"
[[test]]
name = "conditional"
path = "tests/conditional.rs"
[[test]]
name = "contributing_node"
path = "tests/contributing_node.rs"
[[test]]
name = "interrupt"
path = "tests/interrupt.rs"
[[test]]
name = "merge_node"
path = "tests/merge_node.rs"
[[test]]
name = "reducer_proptest"
path = "tests/reducer_proptest.rs"
[[test]]
name = "resume_audit_emit"
path = "tests/resume_audit_emit.rs"
[[test]]
name = "send_edges"
path = "tests/send_edges.rs"
[[test]]
name = "streaming"
path = "tests/streaming.rs"
[[test]]
name = "time_travel"
path = "tests/time_travel.rs"
[dependencies.async-stream]
version = "0.3"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.entelix-core]
version = "0.5.5"
[dependencies.entelix-graph-derive]
version = "0.5.5"
[dependencies.entelix-runnable]
version = "0.5.5"
[dependencies.futures]
version = "0.3"
[dependencies.parking_lot]
version = "0.12"
[dependencies.pin-project-lite]
version = "0.2"
[dependencies.serde]
version = "1.0"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1.0"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.23"
features = [
"v4",
"v7",
"serde",
]
[dev-dependencies.proptest]
version = "1.7"
[dev-dependencies.tokio]
version = "1.52"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
"io-util",
"signal",
"macros",
"rt",
]
[lints.clippy]
await_holding_lock = "deny"
await_holding_refcell_ref = "deny"
dbg_macro = "deny"
duration_suboptimal_units = "allow"
expect_used = "warn"
indexing_slicing = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
print_stderr = "deny"
print_stdout = "deny"
return_self_not_must_use = "allow"
similar_names = "warn"
struct_excessive_bools = "warn"
todo = "warn"
unimplemented = "warn"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
[lints.rust.rust_2024_compatibility]
level = "warn"
priority = -1
[lints.rustdoc]
bare_urls = "deny"
broken_intra_doc_links = "deny"
invalid_codeblock_attributes = "deny"
invalid_html_tags = "deny"
invalid_rust_codeblocks = "deny"
private_intra_doc_links = "deny"
unescaped_backticks = "deny"