swc/crates/swc_ecma_ast/Cargo.toml

53 lines
1.4 KiB
TOML
Raw Normal View History

[package]
2022-08-11 12:52:44 +03:00
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Ecmascript ast."
documentation = "https://rustdoc.swc.rs/swc_ecma_ast/"
2022-08-11 12:52:44 +03:00
edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_ast"
repository = "https://github.com/swc-project/swc.git"
2023-12-08 04:58:57 +03:00
version = "0.110.13"
2022-08-11 12:52:44 +03:00
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[lib]
bench = false
[features]
__rkyv = []
default = []
fuzzing = ["arbitrary", "swc_common/arbitrary"]
rkyv-impl = [
"__rkyv",
"rkyv",
"bytecheck",
"swc_atoms/rkyv-impl",
"swc_common/rkyv-impl",
]
serde-impl = ["serde"]
[dependencies]
arbitrary = { version = "1", optional = true, features = ["derive"] }
bitflags = "2.3.2"
# bytecheck version should be in sync with rkyv version. Do not bump individually.
bytecheck = { version = "0.6.10", optional = true }
is-macro = "0.3.0"
num-bigint = { version = "0.4", features = ["serde"] }
rkyv = { package = "rkyv", version = "=0.7.42", optional = true, features = [
"strict",
"validation",
] }
2023-06-22 16:37:35 +03:00
scoped-tls = "1.0.1"
serde = { version = "1.0.133", features = ["derive"], optional = true }
unicode-id = "0.3"
2023-06-21 18:44:11 +03:00
string_enum = { version = "0.4.1", path = "../string_enum" }
2023-12-01 23:08:13 +03:00
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
2023-12-08 04:58:57 +03:00
swc_common = { version = "0.33.11", path = "../swc_common" }
phf = { version = "0.11.2", features = ["macros"] }
[dev-dependencies]
serde_json = "1"