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/"
|
2021-12-30 12:59:18 +03:00
|
|
|
edition = "2021"
|
2021-12-01 08:20:52 +03:00
|
|
|
license = "Apache-2.0"
|
2020-09-21 16:53:48 +03:00
|
|
|
name = "swc_ecma_ast"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2022-01-17 16:41:25 +03:00
|
|
|
version = "0.65.3"
|
2020-10-15 08:58:11 +03:00
|
|
|
|
2021-11-25 08:16:18 +03:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
2020-10-15 08:58:11 +03:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
fuzzing = ["arbitrary", "swc_common/arbitrary"]
|
2022-01-02 10:23:37 +03:00
|
|
|
rkyv-impl = ["rkyv", "swc_common/rkyv-impl"]
|
2018-01-12 10:53:06 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2021-06-25 08:40:51 +03:00
|
|
|
arbitrary = {version = "1", optional = true, features = ["derive"]}
|
2022-01-11 08:41:34 +03:00
|
|
|
is-macro = "0.2.0"
|
2020-09-21 16:53:48 +03:00
|
|
|
num-bigint = {version = "0.2", features = ["serde"]}
|
2022-01-02 10:23:37 +03:00
|
|
|
rkyv = {version = "0.7.28", optional = true}
|
2022-01-02 06:49:09 +03:00
|
|
|
serde = {version = "1.0.133", features = ["derive"]}
|
2021-11-10 13:00:54 +03:00
|
|
|
string_enum = {version = "0.3.1", path = "../string_enum"}
|
|
|
|
swc_atoms = {version = "0.2", path = "../swc_atoms"}
|
2022-01-12 12:39:56 +03:00
|
|
|
swc_common = {version = "0.17.0", path = "../swc_common"}
|
2021-12-24 04:46:55 +03:00
|
|
|
unicode-xid = "0.2"
|
2019-02-24 08:12:04 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-08-03 19:33:23 +03:00
|
|
|
serde_json = "1"
|