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_react/"
|
2022-08-11 12:52:44 +03:00
|
|
|
edition = "2021"
|
|
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_ecma_transforms_react"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2023-12-08 04:58:57 +03:00
|
|
|
version = "0.180.66"
|
2022-04-04 14:12:03 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
2021-11-10 13:00:54 +03:00
|
|
|
|
2022-06-11 10:42:43 +03:00
|
|
|
[features]
|
|
|
|
concurrent = ["rayon"]
|
2023-03-27 07:28:42 +03:00
|
|
|
default = ["serde-impl"]
|
|
|
|
serde-impl = ["serde"]
|
2022-06-11 10:42:43 +03:00
|
|
|
|
2021-11-10 13:00:54 +03:00
|
|
|
[dependencies]
|
2023-12-02 14:40:56 +03:00
|
|
|
base64 = "0.21.0"
|
2023-06-22 16:37:35 +03:00
|
|
|
dashmap = "5.4.0"
|
2023-12-03 04:12:30 +03:00
|
|
|
indexmap = "2.0.0"
|
2023-06-22 10:40:41 +03:00
|
|
|
once_cell = "1.18.0"
|
|
|
|
rayon = { version = "1.7.0", optional = true }
|
2023-03-27 07:28:42 +03:00
|
|
|
serde = { version = "1.0.118", features = ["derive"], optional = true }
|
2023-03-24 07:46:42 +03:00
|
|
|
sha-1 = "=0.10.0"
|
|
|
|
|
2023-06-21 18:44:11 +03:00
|
|
|
string_enum = { version = "0.4.1", path = "../string_enum" }
|
2023-12-01 23:08:13 +03:00
|
|
|
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
|
2023-12-08 04:58:57 +03:00
|
|
|
swc_common = { version = "0.33.11", path = "../swc_common" }
|
2023-12-04 12:00:34 +03:00
|
|
|
swc_config = { version = "0.1.8", path = "../swc_config" }
|
2023-12-08 04:58:57 +03:00
|
|
|
swc_ecma_ast = { version = "0.110.13", path = "../swc_ecma_ast" }
|
|
|
|
swc_ecma_parser = { version = "0.141.31", path = "../swc_ecma_parser" }
|
|
|
|
swc_ecma_transforms_base = { version = "0.134.53", 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-12-08 04:58:57 +03:00
|
|
|
swc_ecma_utils = { version = "0.124.37", path = "../swc_ecma_utils" }
|
|
|
|
swc_ecma_visit = { version = "0.96.13", path = "../swc_ecma_visit" }
|
2021-11-10 13:00:54 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-12-08 04:58:57 +03:00
|
|
|
swc_ecma_codegen = { version = "0.146.41", path = "../swc_ecma_codegen/" }
|
|
|
|
swc_ecma_transforms_compat = { version = "0.160.61", path = "../swc_ecma_transforms_compat/" }
|
|
|
|
swc_ecma_transforms_module = { version = "0.177.64", path = "../swc_ecma_transforms_module" }
|
|
|
|
swc_ecma_transforms_testing = { version = "0.137.55", path = "../swc_ecma_transforms_testing" }
|
|
|
|
testing = { version = "0.35.13", path = "../testing" }
|