2021-11-10 13:00:54 +03:00
|
|
|
[package]
|
2022-08-11 12:52:44 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "rust port of babel and closure compiler."
|
2021-11-10 13:00:54 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_ecma_transforms_optimization/"
|
2022-08-11 12:52:44 +03:00
|
|
|
edition = "2021"
|
|
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_ecma_transforms_module"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2023-07-04 10:01:59 +03:00
|
|
|
version = "0.173.3"
|
2022-04-04 14:12:03 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
2021-11-10 13:00:54 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2023-03-24 07:46:42 +03:00
|
|
|
Inflector = "0.11.4"
|
2023-06-22 10:40:41 +03:00
|
|
|
ahash = "0.8.3"
|
|
|
|
anyhow = "1.0.71"
|
2023-06-23 05:26:22 +03:00
|
|
|
bitflags = "2.3.2"
|
2023-06-22 16:37:35 +03:00
|
|
|
indexmap = "1.9.3"
|
2023-06-21 18:38:46 +03:00
|
|
|
is-macro = "0.3.0"
|
2022-05-24 14:00:26 +03:00
|
|
|
path-clean = "0.1.0"
|
2023-03-24 07:46:42 +03:00
|
|
|
pathdiff = "0.2.0"
|
|
|
|
regex = "1"
|
|
|
|
serde = { version = "1.0.118", features = ["derive"] }
|
2023-06-22 10:40:41 +03:00
|
|
|
tracing = "0.1.37"
|
2023-03-24 07:46:42 +03:00
|
|
|
|
2023-05-16 08:18:57 +03:00
|
|
|
swc_atoms = { version = "0.5.6", path = "../swc_atoms" }
|
2023-06-22 16:40:52 +03:00
|
|
|
swc_cached = { version = "0.3.17", path = "../swc_cached" }
|
2023-06-23 05:28:10 +03:00
|
|
|
swc_common = { version = "0.31.16", path = "../swc_common" }
|
2023-06-29 17:15:31 +03:00
|
|
|
swc_ecma_ast = { version = "0.107.0", path = "../swc_ecma_ast" }
|
2023-06-23 05:28:10 +03:00
|
|
|
swc_ecma_loader = { version = "0.43.18", path = "../swc_ecma_loader", features = [
|
2022-03-16 12:58:24 +03:00
|
|
|
"node",
|
2022-05-12 07:14:51 +03:00
|
|
|
] }
|
2023-06-30 10:43:11 +03:00
|
|
|
swc_ecma_parser = { version = "0.137.1", path = "../swc_ecma_parser" }
|
|
|
|
swc_ecma_transforms_base = { version = "0.130.1", path = "../swc_ecma_transforms_base" }
|
|
|
|
swc_ecma_utils = { version = "0.120.1", path = "../swc_ecma_utils" }
|
2023-06-29 17:15:31 +03:00
|
|
|
swc_ecma_visit = { version = "0.93.0", path = "../swc_ecma_visit" }
|
2021-11-10 13:00:54 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-06-22 16:37:35 +03:00
|
|
|
indexmap = { version = "1.9.3", features = ["serde"] }
|
2022-05-12 07:14:51 +03:00
|
|
|
serde_json = "1"
|
2023-03-24 07:46:42 +03:00
|
|
|
|
2023-06-23 05:28:10 +03:00
|
|
|
swc_ecma_loader = { version = "0.43.18", path = "../swc_ecma_loader", features = [
|
2022-05-12 07:14:51 +03:00
|
|
|
"node",
|
|
|
|
"tsc",
|
|
|
|
] }
|
2023-07-04 10:01:59 +03:00
|
|
|
swc_ecma_transforms_compat = { version = "0.156.3", path = "../swc_ecma_transforms_compat" }
|
2023-06-30 10:43:11 +03:00
|
|
|
swc_ecma_transforms_testing = { version = "0.133.1", path = "../swc_ecma_transforms_testing" }
|
2023-06-23 05:28:10 +03:00
|
|
|
testing = { version = "0.33.19", path = "../testing/" }
|