mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 04:42:10 +00:00
33 lines
806 B
TOML
33 lines
806 B
TOML
[package]
|
|
name = "oxc_span"
|
|
version = "0.8.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]
|
|
miette = { workspace = true }
|
|
compact_str = { version = "0.7.1" }
|
|
|
|
tsify = { workspace = true, optional = true }
|
|
wasm-bindgen = { workspace = true, optional = true }
|
|
|
|
serde = { workspace = true, features = ["derive"], optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
serde = ["dep:serde", "compact_str/serde"]
|
|
wasm = ["dep:tsify", "dep:wasm-bindgen"]
|