2018-01-12 10:53:06 +03:00
|
|
|
[package]
|
2019-10-25 04:11:24 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2018-11-18 08:00:07 +03:00
|
|
|
description = "Ecmascript ast."
|
2021-03-31 07:09:10 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_ecma_ast/"
|
2018-12-30 05:57:27 +03:00
|
|
|
edition = "2018"
|
2020-09-21 16:53:48 +03:00
|
|
|
license = "Apache-2.0/MIT"
|
|
|
|
name = "swc_ecma_ast"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2021-03-30 10:47:12 +03:00
|
|
|
version = "0.42.0"
|
2020-10-15 08:58:11 +03:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
fuzzing = ["arbitrary", "swc_common/arbitrary"]
|
2018-01-12 10:53:06 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2020-10-15 08:58:11 +03:00
|
|
|
arbitrary = {version = "0.4.7", optional = true, features = ["derive"]}
|
2020-07-23 20:18:22 +03:00
|
|
|
is-macro = "0.1"
|
2020-09-21 16:53:48 +03:00
|
|
|
num-bigint = {version = "0.2", features = ["serde"]}
|
|
|
|
serde = {version = "1.0.88", features = ["derive"]}
|
2021-02-20 09:18:09 +03:00
|
|
|
string_enum = {version = "0.3.1", path = "../../macros/string_enum"}
|
2020-09-21 16:53:48 +03:00
|
|
|
swc_atoms = {version = "0.2", path = "../../atoms"}
|
2021-02-20 09:18:09 +03:00
|
|
|
swc_common = {version = "0.10.10", path = "../../common"}
|
2019-02-24 08:12:04 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-08-03 19:33:23 +03:00
|
|
|
serde_json = "1"
|