[package]
name = "winx-code-agent"
version = "0.2.302"
edition = "2021"
rust-version = "1.75"
description = "High-performance Rust implementation of WCGW for LLM code agents"
authors = ["Gabriel Maia <gabrielmaialva33@gmail.com>"]
license = "MIT"
repository = "https://github.com/gabrielmaialva33/winx-code-agent"
keywords = ["mcp", "llm", "code-agent", "shell", "wcgw"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
rmcp = { version = "1.6.0", features = ["transport-io", "server"] }
schemars = "1.2"
tokio = { version = "1.49", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
home = "0.5"
sha2 = "0.11.0"
base64 = "0.22"
glob = "0.3"
regex = "1.11"
mime_guess = "2.0"
memmap2 = "0.9"
tempfile = "3.14"
toml = "1.1"
rayon = "1.10"
portable-pty = "0.9.0"
lazy_static = "1.5"
libc = "0.2"
vte = "0.15"
strsim = "0.11"
tiktoken-rs = "0.11.0"
tree-sitter = "0.25"
tree-sitter-bash = "0.25.1"
tree-sitter-json = "0.24.8"
tree-sitter-javascript = "0.25.0"
tree-sitter-rust = "0.24.2"
tree-sitter-typescript = "0.23.2"
rand = "0.10.1"
clap = { version = "4.5", features = ["derive"] }
[dev-dependencies]
tempfile = "3.14"
[features]
default = []
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
unwrap_used = "warn"
expect_used = "warn"
panic = "warn"
todo = "warn"
dbg_macro = "warn"
print_stdout = "warn"
print_stderr = "warn"
module_name_repetitions = "allow"
must_use_candidate = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
[lints.rust]
dead_code = "allow"
unused = "allow"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true
[profile.dev]
opt-level = 0
debug = true
[profile.test]
opt-level = 0
debug = true