[package]
edition = "2021"
rust-version = "1.75"
name = "context-governor"
version = "0.2.0"
authors = ["Josh Stevenson <j.stevenson.cs@gmail.com>"]
build = false
include = [
"Cargo.toml",
"Cargo.lock",
"README.md",
"CHANGELOG.md",
"LICENSE",
"src/**",
"tests/**",
"examples/**",
"scripts/*.py",
"docs/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Crate-agnostic governed context compaction with receipts, exact fallback references, and recall quality filters"
homepage = "https://github.com/RecursiveIntell/context-governor"
documentation = "https://docs.rs/context-governor"
readme = "README.md"
keywords = [
"context",
"compaction",
"agents",
"memory",
"receipts",
]
categories = [
"text-processing",
"data-structures",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/RecursiveIntell/context-governor"
[lib]
name = "context_governor"
path = "src/lib.rs"
[[bin]]
name = "context-governor"
path = "src/main.rs"
[[example]]
name = "benchmark_receipt"
path = "examples/benchmark_receipt.rs"
[[example]]
name = "perf"
path = "examples/perf.rs"
[[example]]
name = "replay_eval"
path = "examples/replay_eval.rs"
[[example]]
name = "replay_fixture"
path = "examples/replay_fixture.rs"
[[example]]
name = "task_success_eval"
path = "examples/task_success_eval.rs"
[[test]]
name = "boundary_audit_cli"
path = "tests/boundary_audit_cli.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "compaction"
path = "tests/compaction.rs"
[[test]]
name = "content_compression"
path = "tests/content_compression.rs"
[[test]]
name = "content_kind"
path = "tests/content_kind.rs"
[[test]]
name = "high_roi_research"
path = "tests/high_roi_research.rs"
[[test]]
name = "memory_sink"
path = "tests/memory_sink.rs"
[[test]]
name = "policy"
path = "tests/policy.rs"
[[test]]
name = "replay_answerability"
path = "tests/replay_answerability.rs"
[[test]]
name = "replay_benchmark"
path = "tests/replay_benchmark.rs"
[[test]]
name = "store"
path = "tests/store.rs"
[[test]]
name = "structured_summary"
path = "tests/structured_summary.rs"
[[test]]
name = "token_counter"
path = "tests/token_counter.rs"
[[test]]
name = "tools"
path = "tests/tools.rs"
[[test]]
name = "unicode_search"
path = "tests/unicode_search.rs"
[dependencies.blake3]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.tempfile]
version = "3"