garbage-code-hunter 0.2.2

A humorous Rust code quality detector that roasts your garbage code
Documentation
[package]
authors = [ "TimWood <jinhopers@gmail.com>" ]
name = "garbage-code-hunter"
version = "0.2.2"
edition = "2021"
description = "A humorous Rust code quality detector that roasts your garbage code"
repository = "https://github.com/TimWood0x10/garbage-code-hunter"
license = "Apache-2.0"

[package.metadata.cargo-machete]
ignored = ["proc-macro2"]

[dependencies]
# Removed: syn, proc-macro2, quote (migrated to tree-sitter)
walkdir = "2.0"
rayon = "1.12"
clap = { version = "4.6.1", features = ["derive"] }
colored = "3.1.1"
regex = "1.12.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.13.0", features = ["json", "rustls", "blocking"], default-features = false }
tokio = { version = "1.52.3", features = ["full"] }
anyhow = "1"
toml = "0.8"
serde_yaml = "0.9"
dirs = "6.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
git2 = "0.21"
rand = "0.10.1"

# Web server for AI chat room
axum = { version = "0.8.9", features = ["ws"] }
tower-http = { version = "0.6.11", features = ["fs", "cors"] }
futures-util = "0.3"
tokio-tungstenite = "0.29"

# Unified AST parsing for multi-language support
tree-sitter = "0.26.8"
tree-sitter-rust = "0.24.2"
tree-sitter-python = "0.25.0"
tree-sitter-javascript = "0.25.0"
tree-sitter-c = "0.24.2"
tree-sitter-cpp = "0.23.4"
tree-sitter-go = "0.25.0"
tree-sitter-java = "0.23.5"
tree-sitter-ruby = "0.23.1"
tree-sitter-typescript = "0.23.2"
tree-sitter-swift = "0.7.2"
tree-sitter-zig = "1.1.2"
streaming-iterator = "0.1.9"

[dev-dependencies]
tempfile = "3.27"
criterion = "0.8.2"

[[bench]]
name = "performance_tests"
harness = false