[package]
edition = "2021"
name = "squeez"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "End-to-end token optimizer for Claude Code, Copilot CLI, and OpenCode. Compresses bash output up to 95%, collapses redundant calls, injects caveman persona, and compresses memory files. Zero new dependencies."
readme = "README.md"
keywords = [
"claude-code",
"token",
"compression",
"llm",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/claudioemmanuel/squeez"
[lib]
name = "squeez"
path = "src/lib.rs"
[[bin]]
name = "squeez"
path = "src/main.rs"
[[test]]
name = "test_build"
path = "tests/test_build.rs"
[[test]]
name = "test_cloud"
path = "tests/test_cloud.rs"
[[test]]
name = "test_compress_md"
path = "tests/test_compress_md.rs"
[[test]]
name = "test_config"
path = "tests/test_config.rs"
[[test]]
name = "test_context_cache"
path = "tests/test_context_cache.rs"
[[test]]
name = "test_database"
path = "tests/test_database.rs"
[[test]]
name = "test_dedup"
path = "tests/test_dedup.rs"
[[test]]
name = "test_docker"
path = "tests/test_docker.rs"
[[test]]
name = "test_fs"
path = "tests/test_fs.rs"
[[test]]
name = "test_generic"
path = "tests/test_generic.rs"
[[test]]
name = "test_git"
path = "tests/test_git.rs"
[[test]]
name = "test_grouping"
path = "tests/test_grouping.rs"
[[test]]
name = "test_init"
path = "tests/test_init.rs"
[[test]]
name = "test_intensity"
path = "tests/test_intensity.rs"
[[test]]
name = "test_json_util"
path = "tests/test_json_util.rs"
[[test]]
name = "test_memory"
path = "tests/test_memory.rs"
[[test]]
name = "test_network"
path = "tests/test_network.rs"
[[test]]
name = "test_package_mgr"
path = "tests/test_package_mgr.rs"
[[test]]
name = "test_persona"
path = "tests/test_persona.rs"
[[test]]
name = "test_redundancy"
path = "tests/test_redundancy.rs"
[[test]]
name = "test_runtime"
path = "tests/test_runtime.rs"
[[test]]
name = "test_session"
path = "tests/test_session.rs"
[[test]]
name = "test_smart_filter"
path = "tests/test_smart_filter.rs"
[[test]]
name = "test_summarize"
path = "tests/test_summarize.rs"
[[test]]
name = "test_test_runner"
path = "tests/test_test_runner.rs"
[[test]]
name = "test_track"
path = "tests/test_track.rs"
[[test]]
name = "test_track_result"
path = "tests/test_track_result.rs"
[[test]]
name = "test_truncation"
path = "tests/test_truncation.rs"
[[test]]
name = "test_typescript"
path = "tests/test_typescript.rs"
[[test]]
name = "test_update"
path = "tests/test_update.rs"
[[test]]
name = "test_wrap_integration"
path = "tests/test_wrap_integration.rs"
[dependencies]
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[profile.release]
opt-level = 3
lto = true
strip = true