[package]
edition = "2024"
name = "carryctx"
version = "0.7.0"
authors = ["Xuepoo"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local-first memory for coding agents — resume tasks, checkpoints, and context across windows, sessions, and worktrees."
homepage = "https://carryctx.xuepoo.xyz"
readme = "README.md"
keywords = [
"coding-agent",
"project-state",
"continuity",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/Xuepoo/carryctx"
[package.metadata.docs.rs]
rustc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
[lib]
name = "carryctx"
path = "src/lib.rs"
[[bin]]
name = "carryctx"
path = "src/main.rs"
[[test]]
name = "agent_identity_test"
path = "tests/agent_identity_test.rs"
[[test]]
name = "checkpoint_test"
path = "tests/checkpoint_test.rs"
[[test]]
name = "cli_surface_test"
path = "tests/cli_surface_test.rs"
[[test]]
name = "concurrency_test"
path = "tests/concurrency_test.rs"
[[test]]
name = "config_cli_test"
path = "tests/config_cli_test.rs"
[[test]]
name = "config_compat_test"
path = "tests/config_compat_test.rs"
[[test]]
name = "context_warnings_test"
path = "tests/context_warnings_test.rs"
[[test]]
name = "decision_test"
path = "tests/decision_test.rs"
[[test]]
name = "default_cap_counts_test"
path = "tests/default_cap_counts_test.rs"
[[test]]
name = "e2e_test"
path = "tests/e2e_test.rs"
[[test]]
name = "error_envelope_test"
path = "tests/error_envelope_test.rs"
[[test]]
name = "event_cursor_cli_test"
path = "tests/event_cursor_cli_test.rs"
[[test]]
name = "event_naming_test"
path = "tests/event_naming_test.rs"
[[test]]
name = "event_pagination_test"
path = "tests/event_pagination_test.rs"
[[test]]
name = "graph_audit_test"
path = "tests/graph_audit_test.rs"
[[test]]
name = "handoff_test"
path = "tests/handoff_test.rs"
[[test]]
name = "hooks_template_test"
path = "tests/hooks_template_test.rs"
[[test]]
name = "hooks_test"
path = "tests/hooks_test.rs"
[[test]]
name = "init_test"
path = "tests/init_test.rs"
[[test]]
name = "migration_backfill_test"
path = "tests/migration_backfill_test.rs"
[[test]]
name = "output_test"
path = "tests/output_test.rs"
[[test]]
name = "progress_test"
path = "tests/progress_test.rs"
[[test]]
name = "project_restore_test"
path = "tests/project_restore_test.rs"
[[test]]
name = "search_test"
path = "tests/search_test.rs"
[[test]]
name = "session_test"
path = "tests/session_test.rs"
[[test]]
name = "stats_test"
path = "tests/stats_test.rs"
[[test]]
name = "status_flags_test"
path = "tests/status_flags_test.rs"
[[test]]
name = "storage_integrity_test"
path = "tests/storage_integrity_test.rs"
[[test]]
name = "strict_completion_test"
path = "tests/strict_completion_test.rs"
[[test]]
name = "sync_test"
path = "tests/sync_test.rs"
[[test]]
name = "task_dependency_gate_test"
path = "tests/task_dependency_gate_test.rs"
[[test]]
name = "task_edit_guards_test"
path = "tests/task_edit_guards_test.rs"
[[test]]
name = "task_scope_test"
path = "tests/task_scope_test.rs"
[[test]]
name = "task_test"
path = "tests/task_test.rs"
[[test]]
name = "team_cli_test"
path = "tests/team_cli_test.rs"
[[test]]
name = "team_context_test"
path = "tests/team_context_test.rs"
[[test]]
name = "team_persistence_test"
path = "tests/team_persistence_test.rs"
[[test]]
name = "worktree_prune_tx_test"
path = "tests/worktree_prune_tx_test.rs"
[[test]]
name = "worktree_test"
path = "tests/worktree_test.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.clap_complete]
version = "4"
[dependencies.directories]
version = "6"
[dependencies.globset]
version = "0.4"
[dependencies.hex]
version = "0.4"
[dependencies.regex]
version = "1"
[dependencies.rusqlite]
version = "0.40"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "1.1"
[dependencies.toml_edit]
version = "0.25.13"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.ulid]
version = "3"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.serial_test]
version = "4"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[lints.rust]
unsafe_code = "deny"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true