swc/crates/swc_estree_ast/Cargo.toml

31 lines
796 B
TOML
Raw Normal View History

[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/"
2021-12-30 12:59:18 +03:00
edition = "2021"
2021-12-01 08:20:52 +03:00
license = "Apache-2.0"
name = "swc_estree_ast"
2021-11-22 15:41:03 +03:00
repository = "https://github.com/swc-project/swc.git"
2023-10-06 03:12:18 +03:00
version = "0.22.2"
2022-08-11 12:52:44 +03:00
[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"
2023-06-22 16:40:52 +03:00
better_scoped_tls = { version = "0.1.1", path = "../better_scoped_tls" }
2023-08-24 11:20:56 +03:00
swc_atoms = { version = "0.5.9", path = "../swc_atoms" }
2023-10-06 03:12:18 +03:00
swc_common = { version = "0.32.2", path = "../swc_common" }