mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[package]
|
|
name = "oxc_syntax"
|
|
version = "0.13.0"
|
|
publish = true
|
|
authors.workspace = true
|
|
description.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
categories.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
oxc_index = { workspace = true }
|
|
oxc_span = { workspace = true }
|
|
|
|
unicode-id-start = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
phf = { workspace = true, features = ["macros"] }
|
|
|
|
ryu-js = { workspace = true, optional = true }
|
|
serde = { workspace = true, features = ["derive"], optional = true }
|
|
tsify = { workspace = true, optional = true }
|
|
wasm-bindgen = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
to_js_string = ["dep:ryu-js"]
|
|
serialize = ["dep:serde", "dep:tsify", "dep:wasm-bindgen", "oxc_index/serialize", "bitflags/serde"]
|