swc/crates/swc_ecma_ast/Cargo.toml

33 lines
962 B
TOML
Raw Normal View History

[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Ecmascript ast."
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"
name = "swc_ecma_ast"
repository = "https://github.com/swc-project/swc.git"
2022-01-11 08:42:17 +03:00
version = "0.64.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[features]
default = []
fuzzing = ["arbitrary", "swc_common/arbitrary"]
rkyv-impl = ["rkyv", "swc_common/rkyv-impl"]
[dependencies]
arbitrary = {version = "1", optional = true, features = ["derive"]}
is-macro = "0.2.0"
num-bigint = {version = "0.2", features = ["serde"]}
rkyv = {version = "0.7.28", optional = true}
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-04 13:29:50 +03:00
swc_common = {version = "0.16.0", path = "../swc_common"}
unicode-xid = "0.2"
[dev-dependencies]
serde_json = "1"