mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 20:32:10 +00:00
35 lines
999 B
TOML
35 lines
999 B
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
|
|
|
|
[dependencies]
|
|
oxc_allocator = { path = "../../crates/oxc_allocator" }
|
|
oxc_parser = { path = "../../crates/oxc_parser" }
|
|
oxc_ast = { path = "../../crates/oxc_ast" }
|
|
oxc_printer = { path = "../../crates/oxc_printer" }
|
|
oxc_diagnostics = { path = "../../crates/oxc_diagnostics" }
|
|
oxc_semantic = { path = "../../crates/oxc_semantic" }
|
|
oxc_linter = { path = "../../crates/oxc_linter" }
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
rayon = { workspace = true }
|
|
miette = { workspace = true, features = ["fancy-no-backtrace"] }
|
|
|
|
console = "0.15.5"
|
|
encoding_rs = "0.8.32"
|
|
encoding_rs_io = "0.1.7"
|
|
lazy_static = "1.4.0"
|
|
pico-args = "0.5.0"
|
|
regex = "1.7.1"
|
|
serde_yaml = "0.9.19"
|
|
similar = "2.2.1"
|
|
walkdir = "2.3.2"
|