[package]
edition = "2024"
rust-version = "1.91"
name = "choreo-daemon"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agentic coding assistant — daemon, TUI, and bridges"
homepage = "https://choreographr.com"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/choreographr/choreographr"
[features]
metrics = [
"dep:prometheus",
"dep:tiny_http",
]
pdf = ["dep:pdf-inspector"]
test-utils = []
[lib]
name = "choreo_daemon"
path = "src/lib.rs"
[[test]]
name = "db_migrations"
path = "tests/db_migrations.rs"
[[test]]
name = "edit_file_integration"
path = "tests/edit_file_integration.rs"
[[test]]
name = "exec_tool_integration"
path = "tests/exec_tool_integration.rs"
[[test]]
name = "find_integration"
path = "tests/find_integration.rs"
[[test]]
name = "fish_tool_integration"
path = "tests/fish_tool_integration.rs"
[[test]]
name = "git_tool_integration"
path = "tests/git_tool_integration.rs"
[[test]]
name = "grep_integration"
path = "tests/grep_integration.rs"
[[test]]
name = "http_tool_tests"
path = "tests/http_tool_tests.rs"
[[test]]
name = "lifecycle_integration"
path = "tests/lifecycle_integration.rs"
[[test]]
name = "list_files_integration"
path = "tests/list_files_integration.rs"
[[test]]
name = "mcp_integration"
path = "tests/mcp_integration.rs"
[[test]]
name = "metrics_integration"
path = "tests/metrics_integration.rs"
[[test]]
name = "nu_tool_integration"
path = "tests/nu_tool_integration.rs"
[[test]]
name = "pdf_tool_integration"
path = "tests/pdf_tool_integration.rs"
[[test]]
name = "reasoning_roundtrip_integration"
path = "tests/reasoning_roundtrip_integration.rs"
[[test]]
name = "retry_cancellation"
path = "tests/retry_cancellation.rs"
[[test]]
name = "session_integration"
path = "tests/session_integration.rs"
[[test]]
name = "session_shutdown"
path = "tests/session_shutdown.rs"
[[test]]
name = "sh_tool_integration"
path = "tests/sh_tool_integration.rs"
[[test]]
name = "shell_streaming_integration"
path = "tests/shell_streaming_integration.rs"
[[test]]
name = "spawn_subsession_integration"
path = "tests/spawn_subsession_integration.rs"
[[test]]
name = "vm_integration"
path = "tests/vm_integration.rs"
[[test]]
name = "write_file_integration"
path = "tests/write_file_integration.rs"
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = "0.23"
[dependencies.choreo-ai-protocols]
version = "0.1"
[dependencies.choreo-keystore]
version = "0.1"
[dependencies.choreo-mcp]
version = "0.1"
[dependencies.choreo-proto]
version = "0.1"
[dependencies.choreo-transport]
version = "0.1"
[dependencies.chrono]
version = "0.4"
[dependencies.ckb-vm]
version = "0.24.14"
features = ["detect-asm"]
[dependencies.clap]
version = "4.6"
features = ["derive"]
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.dirs]
version = "6"
[dependencies.gix]
version = "0.86"
features = [
"tree-editor",
"revision",
]
[dependencies.gix-imara-diff]
version = "0.2"
features = ["unified_diff"]
[dependencies.grep-regex]
version = "0.1"
[dependencies.grep-searcher]
version = "0.1"
[dependencies.hex]
version = "0.4"
[dependencies.hkdf]
version = "0.13"
[dependencies.hmac]
version = "0.13"
[dependencies.humfmt]
version = "0.6.0"
[dependencies.image]
version = "0.25"
[dependencies.pdf-inspector]
version = "0.1"
optional = true
[dependencies.postcard]
version = "1.1"
features = ["alloc"]
default-features = false
[dependencies.prometheus]
version = "0.14"
features = ["process"]
optional = true
[dependencies.rand]
version = "0.10"
[dependencies.redb]
version = "4"
[dependencies.resvg]
version = "0.48"
[dependencies.rmp-serde]
version = "1.3"
[dependencies.rustix]
version = "1.1.4"
features = [
"event",
"fs",
"process",
]
[dependencies.schemars]
version = "1.2.1"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha1]
version = "0.11"
[dependencies.sha2]
version = "0.11"
[dependencies.signal-hook]
version = "0.4"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.tiktoken]
version = "3.5"
[dependencies.tiny_http]
version = "0.12"
optional = true
[dependencies.toml]
version = "1.1"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dependencies.unicode-general-category]
version = "1.1"
[dependencies.unicode-segmentation]
version = "1.13"
[dependencies.ureq]
version = "3"
features = ["json"]
[dependencies.url]
version = "2"
[dependencies.x25519-dalek]
version = "3"
features = ["static_secrets"]
[dependencies.yaml_serde]
version = "0.10"
[dependencies.zeroize]
version = "1"
features = ["derive"]
[dependencies.zlob]
version = "1.6"
[dev-dependencies.choreo-ai-protocols]
version = "0.1"
features = ["test-utils"]
[dev-dependencies.filetime]
version = "0.2"
[dev-dependencies.serial_test]
version = "3"