swc/ecmascript/codegen/macros/Cargo.toml
Donny/강동윤 6a41e9a0be
fix(es): Fix performance bugs (#2313)
swc_common:
 - Optimize `SourceMap.span_until_char`.

swc_ecma_codegen:
 - Make `Emitter` generic.

swc_ecma_parser:
 - `Lexer`: Reuse allocation of `String`.
 - `Lexer`: Avoid copying useless data.
2021-09-29 12:10:38 +00:00

25 lines
557 B
TOML

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