mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 11:11:30 +03:00
7fe2245a3d
- replace Lrc with std::sync::Arc swc_common: - make swc_common::sync private - improve MoveMap swc_ecma_codegen: - fix codegen of import. swc_ecma_transforms: - properly detect valid identifier. swc_ecma_parser: - Fix parsing of cond expr inside paren.
28 lines
668 B
TOML
28 lines
668 B
TOML
[package]
|
|
name = "swc_common"
|
|
version = "0.2.1"
|
|
authors = ["강동윤 <kdy1@outlook.kr>"]
|
|
license = "Apache-2.0/MIT"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
documentation = "https://swc-project.github.io/rustdoc/swc_common/"
|
|
description = "Common utilities for the swc project."
|
|
|
|
[features]
|
|
default = []
|
|
# Enable folder and visitor. Requires nightly compiler.
|
|
fold = ["ast_node/fold"]
|
|
|
|
|
|
[dependencies]
|
|
ast_node = { version = "0.3", path = "../macros/ast_node" }
|
|
string_cache = "0.7"
|
|
either = "1.5"
|
|
scoped-tls = { version = "0.1.1" }
|
|
unicode-width = "0.1.4"
|
|
cfg-if = "0.1.2"
|
|
log = "0.4"
|
|
atty = "0.2"
|
|
parking_lot = "0.7.1"
|
|
fxhash = "0.2"
|
|
termcolor = "1.0"
|