swc/macros/ast_node/Cargo.toml
Donny/강동윤 4c983e9158
perf(es/codegen, es/parser): Improve performance (#2406)
ast_node:
 - Make `.span()` inlinable.

swc_ecma_codegen:
 - Reduce call to *heavy* `.span()` calls.

swc_ecma_parser:
 - Reduce `memmove` by using typed-arena.

swc_bundler:
 - Make `Bundle.bundle` take `&mut self`.
 - Make drop concurrent.
2021-10-15 12:49:37 +09:00

24 lines
533 B
TOML

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