[package]
edition = "2021"
name = "squeez"
version = "1.7.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Hook-based token compressor for 5 AI CLI hosts (Claude Code, Copilot CLI, OpenCode, Gemini CLI, Codex CLI). Up to 95% bash compression, signature-mode for code reads, cross-call dedup, MCP server, self-teaching protocol. Zero runtime deps."
readme = "README.md"
keywords = [
"claude-code",
"token",
"compression",
"llm",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/claudioemmanuel/squeez"
[lib]
name = "squeez"
path = "src/lib.rs"
[[bin]]
name = "bench_i18n"
path = "benches/bench_i18n.rs"
[[bin]]
name = "squeez"
path = "src/main.rs"
[[test]]
name = "test_benchmark_hypothesis"
path = "tests/test_benchmark_hypothesis.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_compress_md_i18n"
path = "tests/test_compress_md_i18n.rs"
[[test]]
name = "test_config"
path = "tests/test_config.rs"
[[test]]
name = "test_config_tunables"
path = "tests/test_config_tunables.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_dispatch_cloudflare"
path = "tests/test_dispatch_cloudflare.rs"
[[test]]
name = "test_docker"
path = "tests/test_docker.rs"
[[test]]
name = "test_efficiency_proof"
path = "tests/test_efficiency_proof.rs"
[[test]]
name = "test_error_snippets"
path = "tests/test_error_snippets.rs"
[[test]]
name = "test_file_access_types"
path = "tests/test_file_access_types.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_hosts_codex"
path = "tests/test_hosts_codex.rs"
[[test]]
name = "test_hosts_gemini"
path = "tests/test_hosts_gemini.rs"
[[test]]
name = "test_hosts_opencode"
path = "tests/test_hosts_opencode.rs"
[[test]]
name = "test_hosts_registry"
path = "tests/test_hosts_registry.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_mcp_server"
path = "tests/test_mcp_server.rs"
[[test]]
name = "test_memory"
path = "tests/test_memory.rs"
[[test]]
name = "test_memory_file_warn"
path = "tests/test_memory_file_warn.rs"
[[test]]
name = "test_memory_fixes"
path = "tests/test_memory_fixes.rs"
[[test]]
name = "test_memory_structured"
path = "tests/test_memory_structured.rs"
[[test]]
name = "test_network"
path = "tests/test_network.rs"
[[test]]
name = "test_next_build"
path = "tests/test_next_build.rs"
[[test]]
name = "test_package_mgr"
path = "tests/test_package_mgr.rs"
[[test]]
name = "test_persona"
path = "tests/test_persona.rs"
[[test]]
name = "test_playwright"
path = "tests/test_playwright.rs"
[[test]]
name = "test_redundancy"
path = "tests/test_redundancy.rs"
[[test]]
name = "test_redundancy_shingle"
path = "tests/test_redundancy_shingle.rs"
[[test]]
name = "test_runtime"
path = "tests/test_runtime.rs"
[[test]]
name = "test_session"
path = "tests/test_session.rs"
[[test]]
name = "test_session_stats"
path = "tests/test_session_stats.rs"
[[test]]
name = "test_sig_mode"
path = "tests/test_sig_mode.rs"
[[test]]
name = "test_smart_filter"
path = "tests/test_smart_filter.rs"
[[test]]
name = "test_summarize"
path = "tests/test_summarize.rs"
[[test]]
name = "test_summary_structured"
path = "tests/test_summary_structured.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_wrangler"
path = "tests/test_wrangler.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