swc/ecmascript/ast/Cargo.toml

26 lines
779 B
TOML
Raw Normal View History

[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Ecmascript ast."
documentation = "https://rustdoc.swc.rs/swc_ecma_ast/"
edition = "2018"
license = "Apache-2.0/MIT"
name = "swc_ecma_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.48.1"
[features]
default = []
fuzzing = ["arbitrary", "swc_common/arbitrary"]
[dependencies]
arbitrary = {version = "1", optional = true, features = ["derive"]}
2020-07-23 20:18:22 +03:00
is-macro = "0.1"
num-bigint = {version = "0.2", features = ["serde"]}
serde = {version = "1.0.88", features = ["derive"]}
string_enum = {version = "0.3.1", path = "../../macros/string_enum"}
swc_atoms = {version = "0.2", path = "../../atoms"}
swc_common = {version = "0.10.16", path = "../../common"}
[dev-dependencies]
serde_json = "1"