mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
57 lines
1.6 KiB
TOML
57 lines
1.6 KiB
TOML
[package]
|
|
name = "oxc_coverage"
|
|
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
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[[bin]]
|
|
name = "oxc_coverage"
|
|
test = false
|
|
|
|
[dependencies]
|
|
oxc_allocator = { workspace = true }
|
|
oxc_parser = { workspace = true }
|
|
oxc_ast = { workspace = true, features = ["serde"] }
|
|
oxc_codegen = { workspace = true }
|
|
oxc_diagnostics = { workspace = true }
|
|
oxc_semantic = { workspace = true }
|
|
oxc_minifier = { workspace = true }
|
|
oxc_span = { workspace = true }
|
|
oxc_tasks_common = { workspace = true }
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
rayon = { workspace = true }
|
|
miette = { workspace = true, features = ["fancy-no-backtrace"] }
|
|
project-root = { workspace = true }
|
|
pico-args = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
walkdir = { workspace = true }
|
|
regex = { workspace = true }
|
|
phf = { workspace = true, features = ["macros"] }
|
|
futures = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|
|
|
|
console = "0.15.8"
|
|
encoding_rs = "0.8.33"
|
|
encoding_rs_io = "0.1.7"
|
|
serde_yaml = "0.9.31"
|
|
similar = "2.4.0"
|
|
|
|
[target.'cfg(not(target_env = "msvc"))'.dependencies]
|
|
jemallocator = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
mimalloc = { workspace = true }
|