swc/crates/swc_ecma_transforms_react/Cargo.toml

46 lines
2.0 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_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-11-07 11:55:03 +03:00
version = "0.180.32"
[lib]
bench = false
2021-11-10 13:00:54 +03:00
[features]
concurrent = ["rayon"]
default = ["serde-impl"]
serde-impl = ["serde"]
2021-11-10 13:00:54 +03:00
[dependencies]
base64 = "0.13.0"
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"
rayon = { version = "1.7.0", optional = true }
serde = { version = "1.0.118", features = ["derive"], optional = true }
sha-1 = "=0.10.0"
2023-06-21 18:44:11 +03:00
string_enum = { version = "0.4.1", path = "../string_enum" }
2023-11-07 03:54:18 +03:00
swc_atoms = { version = "0.6.1", path = "../swc_atoms" }
swc_common = { version = "0.33.5", path = "../swc_common" }
2023-06-22 16:40:52 +03:00
swc_config = { version = "0.1.7", path = "../swc_config" }
2023-11-07 03:54:18 +03:00
swc_ecma_ast = { version = "0.110.6", path = "../swc_ecma_ast" }
2023-11-07 11:55:03 +03:00
swc_ecma_parser = { version = "0.141.15", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.134.23", 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-11-07 11:55:03 +03:00
swc_ecma_utils = { version = "0.124.20", path = "../swc_ecma_utils" }
2023-11-07 03:54:18 +03:00
swc_ecma_visit = { version = "0.96.6", path = "../swc_ecma_visit" }
2021-11-10 13:00:54 +03:00
[dev-dependencies]
2023-11-07 11:55:03 +03:00
swc_ecma_codegen = { version = "0.146.17", path = "../swc_ecma_codegen/" }
swc_ecma_transforms_compat = { version = "0.160.29", path = "../swc_ecma_transforms_compat/" }
swc_ecma_transforms_module = { version = "0.177.31", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_testing = { version = "0.137.25", path = "../swc_ecma_transforms_testing" }
2023-11-07 03:54:18 +03:00
testing = { version = "0.35.7", path = "../testing" }