mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 12:51:57 +00:00
I should've done a better job at selecting features. Every feature requires more than just code to get it right. linting by codeowners' files sounds good on paper but actually not that useful.
54 lines
1.3 KiB
TOML
54 lines
1.3 KiB
TOML
[package]
|
|
name = "oxc_cli"
|
|
version = "0.0.0"
|
|
publish = false
|
|
authors.workspace = true
|
|
description.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
categories.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[[bin]]
|
|
name = "oxc_cli"
|
|
path = "src/main.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
name = "oxlint"
|
|
path = "src/lint/main.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
name = "oxformat"
|
|
path = "src/format/main.rs"
|
|
test = false
|
|
|
|
[dependencies]
|
|
oxc_allocator = { workspace = true }
|
|
oxc_diagnostics = { workspace = true }
|
|
oxc_linter = { workspace = true }
|
|
oxc_parser = { workspace = true }
|
|
oxc_prettier = { workspace = true }
|
|
oxc_span = { workspace = true }
|
|
|
|
ignore = { workspace = true, features = ["simd-accel"] }
|
|
miette = { workspace = true }
|
|
rayon = { workspace = true }
|
|
bpaf = { workspace = true, features = ["derive", "autocomplete", "bright-color"] }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
|
|
[target.'cfg(not(target_env = "msvc"))'.dependencies]
|
|
jemallocator = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
mimalloc = { workspace = true }
|