mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 12:51:57 +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)
25 lines
528 B
TOML
25 lines
528 B
TOML
[package]
|
|
name = "oxc_tasks_common"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
console = "0.15.8"
|
|
oxc_syntax = { workspace = true, features = ["serialize"] }
|
|
|
|
project-root = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
similar = "2.4.0"
|
|
|
|
ureq = { workspace = true }
|
|
url = { workspace = true }
|