mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 12:19:15 +00:00
42 lines
1 KiB
TOML
42 lines
1 KiB
TOML
[package]
|
|
name = "oxc_parser_napi"
|
|
version = "0.48.2"
|
|
authors.workspace = true
|
|
categories.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
publish = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
description.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
oxc = { workspace = true }
|
|
oxc_ast = { workspace = true, features = ["serialize"] } # enable feature only
|
|
oxc_data_structures = { workspace = true }
|
|
oxc_napi = { workspace = true }
|
|
oxc_sourcemap = { workspace = true, features = ["napi"] }
|
|
|
|
rustc-hash = { workspace = true }
|
|
self_cell = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
string_wizard = { workspace = true, features = ["sourcemap", "serde"] }
|
|
|
|
napi = { workspace = true, features = ["async"] }
|
|
napi-derive = { workspace = true }
|
|
|
|
[package.metadata.cargo-shear]
|
|
ignored = ["napi", "oxc_ast"]
|
|
|
|
[build-dependencies]
|
|
napi-build = { workspace = true }
|