swc/crates/swc_ecma_transforms_compat/Cargo.toml

49 lines
1.9 KiB
TOML
Raw Normal View History

[package]
2022-08-11 12:52:44 +03:00
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "rust port of babel and closure compiler."
documentation = "https://rustdoc.swc.rs/swc_ecma_transforms_compat/"
2022-08-11 12:52:44 +03:00
edition = "2021"
include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_transforms_compat"
repository = "https://github.com/swc-project/swc.git"
2023-08-16 05:12:39 +03:00
version = "0.156.28"
[lib]
bench = false
[features]
concurrent = [
"rayon",
"swc_ecma_transforms_base/concurrent",
"swc_ecma_utils/concurrent",
]
[dependencies]
arrayvec = "0.7.2"
2023-06-22 16:37:35 +03:00
indexmap = "1.9.3"
is-macro = "0.3.0"
num-bigint = "0.4"
2023-06-22 10:40:41 +03:00
rayon = { version = "1.7.0", optional = true }
serde = { version = "1.0.118", features = ["derive"] }
smallvec = "1.8.0"
2023-06-22 10:40:41 +03:00
tracing = "0.1.37"
2023-07-20 08:57:51 +03:00
swc_atoms = { version = "0.5.8", path = "../swc_atoms" }
2023-08-16 05:12:39 +03:00
swc_common = { version = "0.31.19", path = "../swc_common" }
2023-06-22 16:40:52 +03:00
swc_config = { version = "0.1.7", path = "../swc_config" }
2023-08-16 05:12:39 +03:00
swc_ecma_ast = { version = "0.107.5", path = "../swc_ecma_ast" }
2023-08-16 16:26:52 +03:00
swc_ecma_transforms_base = { version = "0.130.21", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "0.119.21", path = "../swc_ecma_transforms_classes" }
2023-06-21 18:44:11 +03:00
swc_ecma_transforms_macros = { version = "0.5.2", path = "../swc_ecma_transforms_macros" }
2023-08-16 16:26:52 +03:00
swc_ecma_utils = { version = "0.120.17", path = "../swc_ecma_utils" }
2023-08-16 05:12:39 +03:00
swc_ecma_visit = { version = "0.93.5", path = "../swc_ecma_visit" }
2023-06-21 18:44:11 +03:00
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
[dev-dependencies]
serde_json = "1.0.66"
2023-08-16 16:26:52 +03:00
swc_ecma_parser = { version = "0.137.13", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.133.21", path = "../swc_ecma_transforms_testing" }
2023-08-16 05:12:39 +03:00
testing = { version = "0.33.22", path = "../testing" }