2026-01-22 18:10:30 +01:00
|
|
|
[package]
|
|
|
|
|
name = "rtk"
|
2026-01-22 18:15:34 +01:00
|
|
|
version = "0.2.0"
|
2026-01-22 18:10:30 +01:00
|
|
|
edition = "2021"
|
|
|
|
|
authors = ["Patrick Szymkowiak"]
|
|
|
|
|
description = "Rust Token Killer - High-performance CLI proxy to minimize LLM token consumption"
|
|
|
|
|
license = "MIT"
|
|
|
|
|
repository = "https://github.com/pszymkowiak/rtk"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
keywords = ["cli", "llm", "token", "filter", "productivity"]
|
|
|
|
|
categories = ["command-line-utilities", "development-tools"]
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
# CLI framework
|
2026-01-22 18:15:34 +01:00
|
|
|
clap = { version = "4", features = ["derive"] }
|
2026-01-22 18:10:30 +01:00
|
|
|
|
|
|
|
|
# Error handling
|
|
|
|
|
anyhow = "1.0"
|
|
|
|
|
|
|
|
|
|
# File system traversal with gitignore support
|
|
|
|
|
ignore = "0.4"
|
|
|
|
|
walkdir = "2"
|
|
|
|
|
|
|
|
|
|
# Regex for code filtering
|
|
|
|
|
regex = "1"
|
|
|
|
|
lazy_static = "1.4"
|
|
|
|
|
|
|
|
|
|
# Serialization
|
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
|
|
|
|
|
|
|
|
|
# Terminal output
|
|
|
|
|
colored = "2"
|
|
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
|
opt-level = 3
|
|
|
|
|
lto = true
|
|
|
|
|
codegen-units = 1
|
|
|
|
|
panic = "abort"
|
|
|
|
|
strip = true
|