mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
6186af04a9
swc_ecma_transforms: - Fix handling of jsx texts (#517)
30 lines
755 B
TOML
30 lines
755 B
TOML
[package]
|
|
name = "swc_common"
|
|
version = "0.4.2"
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
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."
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = []
|
|
# Enable folder and visitor. Requires nightly compiler.
|
|
fold = ["ast_node/fold"]
|
|
|
|
|
|
[dependencies]
|
|
ast_node = { version = "0.5", path = "../macros/ast_node" }
|
|
string_cache = "0.8"
|
|
chashmap = "2.2"
|
|
either = "1.5"
|
|
scoped-tls = { version = "1" }
|
|
unicode-width = "0.1.4"
|
|
cfg-if = "0.1.2"
|
|
log = "0.4"
|
|
atty = "0.2"
|
|
parking_lot = "0.7.1"
|
|
hashbrown = "0.6"
|
|
termcolor = "1.0"
|
|
serde = { version = "1", features = ["derive"] } |