swc/crates/swc_ecma_transforms/Cargo.toml

56 lines
2.6 KiB
TOML
Raw Normal View History

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/"
2022-08-11 12:52:44 +03:00
edition = "2021"
include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_transforms"
repository = "https://github.com/swc-project/swc.git"
2023-08-31 10:26:53 +03:00
version = "0.223.5"
2021-11-10 13:00:54 +03:00
2022-08-11 12:52:44 +03:00
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
2021-11-10 13:00:54 +03:00
[lib]
bench = false
2021-11-10 13:00:54 +03:00
[features]
compat = ["swc_ecma_transforms_compat"]
concurrent = [
2022-07-01 06:00:04 +03:00
"swc_ecma_transforms_compat/concurrent",
"swc_ecma_transforms_optimization/concurrent",
"swc_ecma_transforms_react/concurrent",
]
2021-11-10 13:00:54 +03:00
module = ["swc_ecma_transforms_module"]
multi-module-decorator = ["swc_ecma_transforms_proposal/multi-module"]
optimization = ["swc_ecma_transforms_optimization"]
proposal = ["swc_ecma_transforms_proposal"]
react = ["swc_ecma_transforms_react"]
typescript = ["swc_ecma_transforms_typescript"]
[dependencies]
2023-08-24 11:20:56 +03:00
swc_atoms = { version = "0.5.9", path = "../swc_atoms" }
2023-08-24 15:58:41 +03:00
swc_common = { version = "0.32.0", path = "../swc_common" }
2023-08-28 03:31:39 +03:00
swc_ecma_ast = { version = "0.109.0", path = "../swc_ecma_ast" }
2023-08-31 08:56:04 +03:00
swc_ecma_transforms_base = { version = "0.132.3", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.158.4", path = "../swc_ecma_transforms_compat", optional = true }
2023-08-31 10:26:53 +03:00
swc_ecma_transforms_module = { version = "0.175.5", path = "../swc_ecma_transforms_module", optional = true }
swc_ecma_transforms_optimization = { version = "0.192.5", path = "../swc_ecma_transforms_optimization", optional = true }
2023-08-31 08:56:04 +03:00
swc_ecma_transforms_proposal = { version = "0.166.4", path = "../swc_ecma_transforms_proposal", optional = true }
2023-08-31 10:26:53 +03:00
swc_ecma_transforms_react = { version = "0.178.5", path = "../swc_ecma_transforms_react", optional = true }
swc_ecma_transforms_typescript = { version = "0.182.5", path = "../swc_ecma_transforms_typescript", optional = true }
2023-08-28 03:31:39 +03:00
swc_ecma_utils = { version = "0.122.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.95.0", path = "../swc_ecma_visit" }
2021-11-10 13:00:54 +03:00
[dev-dependencies]
2023-06-22 16:37:35 +03:00
pretty_assertions = "1.3"
sourcemap = "6.2"
tempfile = "3"
2023-08-30 05:26:08 +03:00
swc_ecma_codegen = { version = "0.144.1", path = "../swc_ecma_codegen" }
2023-08-28 03:31:39 +03:00
swc_ecma_parser = { version = "0.139.0", path = "../swc_ecma_parser" }
2023-08-31 08:56:04 +03:00
swc_ecma_transforms_testing = { version = "0.135.3", path = "../swc_ecma_transforms_testing" }
2023-08-24 15:58:41 +03:00
testing = { version = "0.34.0", path = "../testing" }