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_optimization"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2023-09-26 02:38:00 +03:00
|
|
|
version = "0.193.14"
|
2021-11-10 13:00:54 +03:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2021-11-10 13:00:54 +03:00
|
|
|
[features]
|
2022-09-01 07:36:30 +03:00
|
|
|
concurrent = [
|
|
|
|
"swc_common/concurrent",
|
|
|
|
"swc_ecma_transforms_base/concurrent",
|
|
|
|
"rayon",
|
|
|
|
]
|
|
|
|
debug = []
|
2021-11-10 13:00:54 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2023-06-22 16:37:35 +03:00
|
|
|
dashmap = "5.4.0"
|
|
|
|
indexmap = "1.9.3"
|
2023-06-22 10:40:41 +03:00
|
|
|
once_cell = "1.18.0"
|
2023-03-24 07:46:42 +03:00
|
|
|
petgraph = "0.6"
|
2023-06-22 10:40:41 +03:00
|
|
|
rayon = { version = "1.7.0", optional = true }
|
2023-03-24 07:46:42 +03:00
|
|
|
rustc-hash = "1.1.0"
|
|
|
|
serde_json = "1.0.61"
|
2023-06-22 10:40:41 +03:00
|
|
|
tracing = "0.1.37"
|
2023-03-24 07:46:42 +03:00
|
|
|
|
2023-08-24 11:20:56 +03:00
|
|
|
swc_atoms = { version = "0.5.9", path = "../swc_atoms" }
|
2023-08-31 16:25:10 +03:00
|
|
|
swc_common = { version = "0.32.1", path = "../swc_common" }
|
|
|
|
swc_ecma_ast = { version = "0.109.1", path = "../swc_ecma_ast" }
|
2023-09-05 15:26:15 +03:00
|
|
|
swc_ecma_parser = { version = "0.140.0", path = "../swc_ecma_parser" }
|
2023-09-26 02:38:00 +03:00
|
|
|
swc_ecma_transforms_base = { version = "0.133.4", path = "../swc_ecma_transforms_base" }
|
2023-08-29 08:06:03 +03:00
|
|
|
swc_ecma_transforms_macros = { version = "0.5.3", path = "../swc_ecma_transforms_macros" }
|
2023-09-05 15:26:15 +03:00
|
|
|
swc_ecma_utils = { version = "0.123.0", path = "../swc_ecma_utils" }
|
2023-08-31 16:25:10 +03:00
|
|
|
swc_ecma_visit = { version = "0.95.1", path = "../swc_ecma_visit" }
|
|
|
|
swc_fast_graph = { version = "0.20.1", path = "../swc_fast_graph" }
|
2021-11-10 13:00:54 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-09-26 02:38:00 +03:00
|
|
|
swc_ecma_transforms_compat = { version = "0.159.10", path = "../swc_ecma_transforms_compat" }
|
|
|
|
swc_ecma_transforms_module = { version = "0.176.13", path = "../swc_ecma_transforms_module" }
|
|
|
|
swc_ecma_transforms_proposal = { version = "0.167.11", path = "../swc_ecma_transforms_proposal" }
|
|
|
|
swc_ecma_transforms_react = { version = "0.179.13", path = "../swc_ecma_transforms_react" }
|
|
|
|
swc_ecma_transforms_testing = { version = "0.136.4", path = "../swc_ecma_transforms_testing" }
|
|
|
|
swc_ecma_transforms_typescript = { version = "0.183.13", path = "../swc_ecma_transforms_typescript" }
|
2023-08-31 16:25:10 +03:00
|
|
|
testing = { version = "0.34.1", path = "../testing" }
|