mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
related: #688 . There are some unfinished things that need to be finalised by Boshen. 1. Official icon and description for the package. 2. Publishing strategy ( It's probably not a good idea to use `package.json` as a probe to publish extension, as there's too much vscode configuration coupled to it, a git tag like `vscode_v0.0.x` might be worth considering ). 3. License for the extension.
44 lines
1.3 KiB
TOML
44 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
|
|
|
|
[[bin]]
|
|
name = "oxlint"
|
|
path = "src/lint/main.rs"
|
|
|
|
[target.'cfg(not(target_env = "msvc"))'.dependencies]
|
|
jemallocator = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
mimalloc = { workspace = true }
|
|
|
|
[dependencies]
|
|
oxc_allocator = { workspace = true }
|
|
oxc_diagnostics = { workspace = true }
|
|
oxc_index = { workspace = true }
|
|
oxc_linter = { workspace = true }
|
|
oxc_parser = { workspace = true }
|
|
oxc_semantic = { workspace = true }
|
|
oxc_span = { workspace = true }
|
|
oxc_type_synthesis = { workspace = true }
|
|
|
|
# TODO temp, for type check output, replace with Miette
|
|
codespan-reporting = "0.11.1"
|
|
|
|
clap = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
ignore = { workspace = true, features = ["simd-accel"] }
|
|
miette = { workspace = true, features = ["fancy-no-backtrace"] }
|
|
rayon = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
# git2 = { version = "0.16.1", default_features = false }
|