oxc/crates/oxc_cli/Cargo.toml
Boshen ef19895cc3
feat(cli): add -A all -D isolated-declarations (#211)
* feat(linter): add restriction category for lint rules

* feat(cli): add "--allow" and "--deny" commands

* feat(linter): use a single instance of linter

* feat(cli): derive rules from args

* feat(cli): print number of rules
2023-03-26 04:34:31 -07:00

33 lines
980 B
TOML

[package]
name = "oxc_cli"
authors.workspace = true
description.workspace = true
edition.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = { workspace = true }
[target.'cfg(target_os = "windows")'.dependencies]
mimalloc = { workspace = true }
[dependencies]
oxc_diagnostics = { path = "../oxc_diagnostics" }
oxc_allocator = { path = "../oxc_allocator" }
oxc_ast = { path = "../oxc_ast" }
oxc_parser = { path = "../oxc_parser" }
oxc_semantic = { path = "../oxc_semantic" }
oxc_linter = { path = "../oxc_linter" }
clap = { workspace = true }
rayon = { workspace = true }
miette = { workspace = true, features = ["fancy-no-backtrace"] }
rustc-hash = { workspace = true }
num_cpus = "1.15.0"
ignore = { version = "0.4.20", features = ["simd-accel"] }
# git2 = { version = "0.16.1", default_features = false }