swc/common/Cargo.toml

28 lines
716 B
TOML
Raw Normal View History

2017-12-22 15:51:36 +03:00
[package]
name = "swc_common"
2019-01-18 04:19:23 +03:00
version = "0.2.1"
2017-12-22 15:51:36 +03:00
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."
2017-12-22 15:51:36 +03:00
[features]
default = []
# Enable folder and visitor. Requires nightly compiler.
fold = ["ast_node/fold"]
2017-12-22 15:51:36 +03:00
[dependencies]
ast_node = { version = "0.3", path = "../macros/ast_node" }
string_cache = "0.7"
either = "1.5"
2019-01-18 04:19:23 +03:00
scoped-tls = { version = "0.1.1" }
unicode-width = "0.1.4"
cfg-if = "0.1.2"
log = "0.4"
atty = "0.2"
2019-02-06 18:05:25 +03:00
parking_lot = "0.7.1"
fxhash = "0.2"
termcolor = "1.0"
serde = { version = "1", features = ["derive"] }