[package]
edition = "2021"
name = "holon"
version = "0.14.1"
authors = ["Holon Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A headless, event-driven runtime for long-lived agents"
readme = "README.md"
license = "Apache-2.0"
[lib]
name = "holon"
path = "src/lib.rs"
[[bin]]
name = "holon"
path = "src/main.rs"
[[test]]
name = "http_callback"
path = "tests/http_callback.rs"
[[test]]
name = "http_client"
path = "tests/http_client.rs"
[[test]]
name = "http_control"
path = "tests/http_control.rs"
[[test]]
name = "http_events"
path = "tests/http_events.rs"
[[test]]
name = "http_ingress"
path = "tests/http_ingress.rs"
[[test]]
name = "http_operator_transport"
path = "tests/http_operator_transport.rs"
[[test]]
name = "http_tasks"
path = "tests/http_tasks.rs"
[[test]]
name = "http_workspace"
path = "tests/http_workspace.rs"
[[test]]
name = "live_anthropic"
path = "tests/live_anthropic.rs"
[[test]]
name = "live_anthropic_cache"
path = "tests/live_anthropic_cache.rs"
[[test]]
name = "live_anthropic_compatible"
path = "tests/live_anthropic_compatible.rs"
[[test]]
name = "live_codex"
path = "tests/live_codex.rs"
[[test]]
name = "live_openai"
path = "tests/live_openai.rs"
[[test]]
name = "live_openai_chat_completions"
path = "tests/live_openai_chat_completions.rs"
[[test]]
name = "live_openai_codex_compact"
path = "tests/live_openai_codex_compact.rs"
[[test]]
name = "prompt_context_snapshots"
path = "tests/prompt_context_snapshots.rs"
[[test]]
name = "regression_fixture"
path = "tests/regression_fixture.rs"
[[test]]
name = "run_once"
path = "tests/run_once.rs"
[[test]]
name = "runtime_compaction"
path = "tests/runtime_compaction.rs"
[[test]]
name = "runtime_subagents"
path = "tests/runtime_subagents.rs"
[[test]]
name = "runtime_tasks"
path = "tests/runtime_tasks.rs"
[[test]]
name = "runtime_waiting_and_delivery_regressions"
path = "tests/runtime_waiting_and_delivery_regressions.rs"
[[test]]
name = "runtime_waiting_and_reactivation"
path = "tests/runtime_waiting_and_reactivation.rs"
[[test]]
name = "runtime_workspace_worktree"
path = "tests/runtime_workspace_worktree.rs"
[[test]]
name = "scripted_agent_provider"
path = "tests/scripted_agent_provider.rs"
[[test]]
name = "worktree_storage_test"
path = "tests/worktree_storage_test.rs"
[[test]]
name = "wt201_multiple_worktree_tasks"
path = "tests/wt201_multiple_worktree_tasks.rs"
[[test]]
name = "wt202_worktree_task_summary"
path = "tests/wt202_worktree_task_summary.rs"
[[test]]
name = "wt203_task_owned_worktree_cleanup"
path = "tests/wt203_task_owned_worktree_cleanup.rs"
[[test]]
name = "wt204_parallel_worktree_workflow"
path = "tests/wt204_parallel_worktree_workflow.rs"
[[test]]
name = "wt205_worktree_lifecycle_edge_cases"
path = "tests/wt205_worktree_lifecycle_edge_cases.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.7"
features = ["json"]
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.crossterm]
version = "0.28"
[dependencies.hyper]
version = "1.5"
features = [
"server",
"http1",
"http2",
]
[dependencies.hyper-util]
version = "0.1"
features = [
"server-auto",
"tokio",
"service",
"http1",
"http2",
]
[dependencies.libc]
version = "0.2"
[dependencies.portable-pty]
version = "0.9"
[dependencies.pulldown-cmark]
version = "0.13"
[dependencies.ratatui]
version = "0.29"
features = ["unstable-rendered-line-info"]
[dependencies.reqwest]
version = "0.12"
features = [
"gzip",
"json",
"rustls-tls",
]
default-features = false
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.schemars]
version = "0.8"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.43"
features = ["full"]
[dependencies.tokio-stream]
version = "0.1"
[dependencies.tokio-util]
version = "0.7"
[dependencies.tower]
version = "0.5"
features = ["util"]
[dependencies.tower-http]
version = "0.6.8"
features = ["compression-gzip"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.twox-hash]
version = "2.1.2"
features = ["std"]
[dependencies.unicode-width]
version = "0.2"
[dependencies.url]
version = "2.5"
[dependencies.uuid]
version = "1.11"
features = [
"serde",
"v4",
]
[dev-dependencies.flate2]
version = "1.0"
[dev-dependencies.proptest]
version = "1.6"
[dev-dependencies.tempfile]
version = "3.14"