[package]
name = "react-perf-analyzer"
version = "0.4.0"
edition = "2021"
description = "Static analysis CLI for React performance anti-patterns"
license = "MIT"
repository = "https://github.com/rashvish18/react-perf-analyzer"
homepage = "https://github.com/rashvish18/react-perf-analyzer"
keywords = ["react", "performance", "linter", "cli", "oxc"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "react-perf-analyzer"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
rayon = "1.10"
walkdir = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
oxc_allocator = "0.67"
oxc_parser = "0.67"
oxc_ast = "0.67"
oxc_span = "0.67"
oxc_ast_visit = "0.67"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1