[package]
edition = "2024"
name = "carryctx"
version = "0.3.2"
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 = "checkpoint_test"
path = "tests/checkpoint_test.rs"
[[test]]
name = "decision_test"
path = "tests/decision_test.rs"
[[test]]
name = "e2e_test"
path = "tests/e2e_test.rs"
[[test]]
name = "handoff_test"
path = "tests/handoff_test.rs"
[[test]]
name = "init_test"
path = "tests/init_test.rs"
[[test]]
name = "progress_test"
path = "tests/progress_test.rs"
[[test]]
name = "session_test"
path = "tests/session_test.rs"
[[test]]
name = "task_test"
path = "tests/task_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.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 = "3"
[lints.rust]
unsafe_code = "deny"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true