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-06-05 22:54:19 +03:00
|
|
|
version = "0.79.0"
|
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"]
|
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
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]
|
2022-04-22 04:50:25 +03:00
|
|
|
arbitrary = { version = "1", optional = true, features = ["derive"] }
|
2022-06-05 17:40:55 +03:00
|
|
|
bitflags = "1"
|
2022-01-11 08:41:34 +03:00
|
|
|
is-macro = "0.2.0"
|
2022-04-22 04:50:25 +03:00
|
|
|
num-bigint = { version = "0.4", features = ["serde"] }
|
2022-04-19 08:25:44 +03:00
|
|
|
rkyv = { version = "0.7.37", optional = true }
|
2022-05-17 13:21:01 +03:00
|
|
|
scoped-tls = "1.0.0"
|
2022-04-22 04:50:25 +03:00
|
|
|
serde = { version = "1.0.133", features = ["derive"] }
|
|
|
|
string_enum = { version = "0.3.1", path = "../string_enum" }
|
|
|
|
swc_atoms = { version = "0.2", path = "../swc_atoms" }
|
2022-05-11 19:17:07 +03:00
|
|
|
swc_common = { version = "0.18.0", path = "../swc_common" }
|
2022-03-05 15:24:45 +03:00
|
|
|
unicode-id = "0.3"
|
2019-02-24 08:12:04 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-08-03 19:33:23 +03:00
|
|
|
serde_json = "1"
|