2018-11-03 10:56:43 +03:00
|
|
|
[package]
|
2019-10-25 04:11:24 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2018-11-18 08:00:07 +03:00
|
|
|
description = "rust port of babel and closure compiler."
|
2021-03-31 07:09:10 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_ecma_transforms/"
|
2019-11-17 07:21:53 +03:00
|
|
|
edition = "2018"
|
2020-08-30 07:30:50 +03:00
|
|
|
license = "Apache-2.0/MIT"
|
|
|
|
name = "swc_ecma_transforms"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2021-10-05 16:31:35 +03:00
|
|
|
version = "0.78.0"
|
2021-02-26 12:21:42 +03:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
2018-11-03 10:56:43 +03:00
|
|
|
|
2020-08-03 19:33:23 +03:00
|
|
|
[features]
|
2021-01-05 08:29:52 +03:00
|
|
|
compat = ["swc_ecma_transforms_compat"]
|
|
|
|
module = ["swc_ecma_transforms_module"]
|
2021-03-20 09:30:54 +03:00
|
|
|
multi-module-decorator = ["swc_ecma_transforms_proposal/multi-module"]
|
2021-01-05 08:29:52 +03:00
|
|
|
optimization = ["swc_ecma_transforms_optimization"]
|
|
|
|
proposal = ["swc_ecma_transforms_proposal"]
|
|
|
|
react = ["swc_ecma_transforms_react"]
|
|
|
|
typescript = ["swc_ecma_transforms_typescript"]
|
2020-08-03 19:33:23 +03:00
|
|
|
|
2018-11-03 10:56:43 +03:00
|
|
|
[dependencies]
|
2020-08-30 07:30:50 +03:00
|
|
|
swc_atoms = {version = "0.2.0", path = "../../atoms"}
|
2021-09-27 12:19:15 +03:00
|
|
|
swc_common = {version = "0.13.0", path = "../../common"}
|
2021-09-28 16:05:20 +03:00
|
|
|
swc_ecma_ast = {version = "0.54.0", path = "../ast"}
|
|
|
|
swc_ecma_parser = {version = "0.73.0", path = "../parser"}
|
2021-09-29 15:10:38 +03:00
|
|
|
swc_ecma_transforms_base = {version = "0.35.0", path = "./base"}
|
2021-10-05 16:31:35 +03:00
|
|
|
swc_ecma_transforms_compat = {version = "0.40.0", path = "./compat", optional = true}
|
|
|
|
swc_ecma_transforms_module = {version = "0.44.0", path = "./module", optional = true}
|
|
|
|
swc_ecma_transforms_optimization = {version = "0.48.0", path = "./optimization", optional = true}
|
|
|
|
swc_ecma_transforms_proposal = {version = "0.44.0", path = "./proposal", optional = true}
|
|
|
|
swc_ecma_transforms_react = {version = "0.45.0", path = "./react", optional = true}
|
|
|
|
swc_ecma_transforms_typescript = {version = "0.46.0", path = "./typescript", optional = true}
|
2021-09-28 16:05:20 +03:00
|
|
|
swc_ecma_utils = {version = "0.46.0", path = "../utils"}
|
|
|
|
swc_ecma_visit = {version = "0.40.0", path = "../visit"}
|
2020-08-30 07:30:50 +03:00
|
|
|
unicode-xid = "0.2"
|
2018-11-03 10:56:43 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-11-24 08:17:27 +03:00
|
|
|
pretty_assertions = "0.6"
|
2020-06-20 09:09:57 +03:00
|
|
|
sourcemap = "6"
|
2021-09-29 15:10:38 +03:00
|
|
|
swc_ecma_codegen = {version = "0.74.0", path = "../codegen"}
|
|
|
|
swc_ecma_transforms_testing = {version = "0.36.0", path = "./testing"}
|
2020-08-30 07:30:50 +03:00
|
|
|
tempfile = "3"
|
2021-09-27 12:19:15 +03:00
|
|
|
testing = {version = "0.14.0", path = "../../testing"}
|
2020-08-03 19:33:23 +03:00
|
|
|
walkdir = "2"
|