2018-01-12 10:53:06 +03:00
|
|
|
[package]
|
2022-08-11 12:52:44 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "Ecmascript ast."
|
2021-03-31 07:09:10 +03:00
|
|
|
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"
|
2024-11-01 10:35:29 +03:00
|
|
|
version = "3.0.0"
|
2020-10-15 08:58:11 +03:00
|
|
|
|
2022-08-11 12:52:44 +03:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2021-11-25 08:16:18 +03:00
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2020-10-15 08:58:11 +03:00
|
|
|
[features]
|
2023-05-06 06:54:25 +03:00
|
|
|
__rkyv = []
|
|
|
|
default = []
|
2024-07-09 04:24:45 +03:00
|
|
|
fuzzing = ["arbitrary", "swc_atoms/arbitrary", "swc_common/arbitrary"]
|
2023-05-06 06:54:25 +03:00
|
|
|
rkyv-impl = [
|
|
|
|
"__rkyv",
|
|
|
|
"rkyv",
|
|
|
|
"bytecheck",
|
|
|
|
"swc_atoms/rkyv-impl",
|
|
|
|
"swc_common/rkyv-impl",
|
|
|
|
]
|
2023-03-27 07:28:42 +03:00
|
|
|
serde-impl = ["serde"]
|
2018-01-12 10:53:06 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2024-04-29 03:54:45 +03:00
|
|
|
arbitrary = { workspace = true, features = ["derive"], optional = true }
|
|
|
|
bitflags = { workspace = true }
|
2023-05-06 06:54:25 +03:00
|
|
|
# bytecheck version should be in sync with rkyv version. Do not bump individually.
|
2024-10-29 05:25:16 +03:00
|
|
|
bytecheck = { workspace = true, optional = true }
|
|
|
|
is-macro = { workspace = true }
|
|
|
|
num-bigint = { workspace = true, features = ["serde"] }
|
|
|
|
phf = { workspace = true, features = ["macros"] }
|
|
|
|
rkyv = { workspace = true, features = ["validation"], optional = true }
|
|
|
|
scoped-tls = { workspace = true }
|
|
|
|
serde = { workspace = true, features = ["derive"], optional = true }
|
|
|
|
string_enum = { version = "1.0.0", path = "../string_enum" }
|
|
|
|
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
|
2024-11-01 10:35:29 +03:00
|
|
|
swc_common = { version = "3.0.0", path = "../swc_common" }
|
2024-10-29 05:30:46 +03:00
|
|
|
swc_visit = { version = "2.0.0", path = "../swc_visit" }
|
2024-04-29 03:54:45 +03:00
|
|
|
unicode-id-start = { workspace = true }
|
2019-02-24 08:12:04 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-04-29 03:54:45 +03:00
|
|
|
serde_json = { workspace = true }
|