-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (27 loc) · 835 Bytes
/
Cargo.toml
File metadata and controls
33 lines (27 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "squeez"
version = "1.11.2"
edition = "2021"
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."
repository = "https://github.com/claudioemmanuel/squeez"
license = "Apache-2.0"
keywords = ["claude-code", "token", "compression", "llm", "cli"]
categories = ["command-line-utilities", "development-tools"]
readme = "README.md"
autobenches = false
[[bin]]
name = "squeez"
path = "src/main.rs"
[[bin]]
name = "bench_i18n"
path = "benches/bench_i18n.rs"
[lib]
name = "squeez"
path = "src/lib.rs"
[dependencies]
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[profile.release]
opt-level = 3
strip = true
lto = true