yoagent-state 0.2.0

Durable state and lineage for long-running 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"
name = "yoagent-state"
version = "0.2.0"
authors = ["Yuanhao <yuanhao@yolog.dev>"]
build = false
exclude = [
    "docs/images/*",
    "docs/theme/*",
    ".github/*",
    "AGENTS.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Durable state and lineage for long-running agents."
homepage = "https://yologdev.github.io/yoagent-state/"
documentation = "https://docs.rs/yoagent-state"
readme = "README.md"
keywords = [
    "agent",
    "state",
    "lineage",
    "ai",
    "memory",
]
categories = [
    "asynchronous",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/yologdev/yoagent-state"

[lib]
name = "yoagent_state"
path = "src/lib.rs"

[[bin]]
name = "yoagent-state"
path = "src/bin/yoagent-state.rs"

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.chrono]
version = "0.4"
features = [
    "clock",
    "serde",
]
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "fs",
    "macros",
    "rt-multi-thread",
    "sync",
]

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