swc/ecmascript/transforms/macros/Cargo.toml
Donny/강동윤 575aa44c25
perf(es/transforms): Improve performance (#2454)
swc_ecma_transforms_macros:
 - `#[parallel]`: Run hooks for single-threaded operations.

swc_ecma_transforms_compat:
 - `shorthand`: Parallel.
 - `exponentation`: Parallel.
 - `parameters`: Parallel.
 - Recover some `#[fast_path]`
2021-10-18 12:07:13 +00:00

20 lines
550 B
TOML

[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Macros for swc_ecma_transforms."
documentation = "https://rustdoc.swc.rs/swc_ecma_transforms_macros/"
edition = "2018"
license = "Apache-2.0/MIT"
name = "swc_ecma_transforms_macros"
repository = "https://github.com/swc-project/swc.git"
version = "0.2.3"
[lib]
proc-macro = true
[dependencies]
pmutil = "0.5.1"
proc-macro2 = "1"
quote = "1"
swc_macros_common = {version = "0.3.2", path = "../../../macros/common"}
syn = {version = "1", features = ["fold", "parsing", "full"]}