swc/crates/swc_estree_ast/Cargo.toml
2023-08-31 13:25:10 +00:00

31 lines
796 B
TOML

[package]
authors = [
"강동윤 <kdy1997.dev@gmail.com>",
"Daniel Woznicki <daniel.woznicki@gmail.com>",
]
description = "ESTree AST node definitions"
documentation = "https://rustdoc.swc.rs/swc_estree_ast/"
edition = "2021"
license = "Apache-2.0"
name = "swc_estree_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.22.1"
[package.metadata.docs.rs]
all-features = true
[lib]
bench = false
[features]
default = ["serde-impl"]
serde-impl = ["serde"]
[dependencies]
serde = { version = "1", features = ["derive"], optional = true }
serde_json = "1"
better_scoped_tls = { version = "0.1.1", path = "../better_scoped_tls" }
swc_atoms = { version = "0.5.9", path = "../swc_atoms" }
swc_common = { version = "0.32.1", path = "../swc_common" }