mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
This PR merges the previous confusing features `serde` and `wasm` into a single `serialize` feature. We'll eventually do serialize + type information for both wasm and napi targets. `oxc_macros` is removed from `oxc_ast`'s dependency because it requires `syn` and friends, which goes against our policy ["Third-party dependencies should be minimal."](https://oxc-project.github.io/docs/contribute/rules.html#development-policy)
29 lines
748 B
TOML
29 lines
748 B
TOML
[package]
|
|
name = "oxc_wasm"
|
|
version = "0.0.0"
|
|
publish = false
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
categories.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
oxc = { workspace = true, features = ["serialize", "semantic", "transformer", "minifier", "codegen"] }
|
|
|
|
oxc_linter = { workspace = true }
|
|
oxc_prettier = { workspace = true }
|
|
serde = { workspace = true }
|
|
|
|
wasm-bindgen = { workspace = true }
|
|
serde-wasm-bindgen = { workspace = true }
|
|
tsify = { workspace = true }
|