[package]
edition = "2024"
rust-version = "1.92"
name = "harness-rs-loop"
version = "0.0.8"
authors = ["liliang"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ReAct agent loop, subagent isolation, and session record/replay (JSONL) for the harness-rs framework."
readme = "README.md"
keywords = [
"agent",
"ai",
"llm",
"harness",
]
categories = [
"asynchronous",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/liliang-cn/harness-rs"
[lib]
name = "harness_loop"
path = "src/lib.rs"
[[test]]
name = "agent_loop"
path = "tests/agent_loop.rs"
[[test]]
name = "apply_patches"
path = "tests/apply_patches.rs"
[[test]]
name = "golden_path"
path = "tests/golden_path.rs"
[[test]]
name = "learning_loop"
path = "tests/learning_loop.rs"
[[test]]
name = "recall_capture"
path = "tests/recall_capture.rs"
[[test]]
name = "session_replay"
path = "tests/session_replay.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.futures]
version = "0.3"
[dependencies.harness-compactor]
version = "0.0.8"
package = "harness-rs-compactor"
[dependencies.harness-context]
version = "0.0.8"
package = "harness-rs-context"
[dependencies.harness-core]
version = "0.0.8"
package = "harness-rs-core"
[dependencies.harness-hooks]
version = "0.0.8"
package = "harness-rs-hooks"
[dependencies.harness-models]
version = "0.0.8"
package = "harness-rs-models"
[dependencies.schemars]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"fs",
"process",
"io-util",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"