mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 05:01:42 +03:00
4c983e9158
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.
24 lines
533 B
TOML
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"
|