mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 19:22:32 +03:00
51d0cef287
swc_ecma_ast: - Support TypeScript 4.3. (#1517) swc_ecma_parser: - Support new syntaxes from typescript 4.3. (#1517) swc_ecma_transforms_compat: - Fix '\\`' in template literals. (#1488) - `classes`: Fix super calls. (#1490) swc_ecma_transforms_module: - Respect `esModuleInterop` for dynamic imports. (#1480) swc_ecma_transforms_typescript: - `strip`: Remove `declare`-d namespaces. (#1508)
26 lines
783 B
TOML
26 lines
783 B
TOML
[package]
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
description = "Ecmascript ast."
|
|
documentation = "https://swc.rs/rustdoc/swc_ecma_ast/"
|
|
edition = "2018"
|
|
license = "Apache-2.0/MIT"
|
|
name = "swc_ecma_ast"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
version = "0.42.0"
|
|
|
|
[features]
|
|
default = []
|
|
fuzzing = ["arbitrary", "swc_common/arbitrary"]
|
|
|
|
[dependencies]
|
|
arbitrary = {version = "0.4.7", optional = true, features = ["derive"]}
|
|
is-macro = "0.1"
|
|
num-bigint = {version = "0.2", features = ["serde"]}
|
|
serde = {version = "1.0.88", features = ["derive"]}
|
|
string_enum = {version = "0.3.1", path = "../../macros/string_enum"}
|
|
swc_atoms = {version = "0.2", path = "../../atoms"}
|
|
swc_common = {version = "0.10.10", path = "../../common"}
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1"
|