2017-12-22 15:51:36 +03:00
|
|
|
[package]
|
|
|
|
name = "swc_common"
|
2020-03-03 10:19:45 +03:00
|
|
|
version = "0.5.8"
|
2019-10-25 04:11:24 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2018-11-18 08:00:07 +03:00
|
|
|
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."
|
2019-11-17 07:21:53 +03:00
|
|
|
edition = "2018"
|
2017-12-22 15:51:36 +03:00
|
|
|
|
2019-01-17 17:17:16 +03:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
# Enable folder and visitor. Requires nightly compiler.
|
|
|
|
fold = ["ast_node/fold"]
|
|
|
|
|
|
|
|
|
2017-12-22 15:51:36 +03:00
|
|
|
[dependencies]
|
2020-01-15 12:00:08 +03:00
|
|
|
ast_node = { version = "0.6", path = "../macros/ast_node" }
|
|
|
|
from_variant = { version = "0.1", path = "../macros/from_variant" }
|
2019-11-23 17:03:19 +03:00
|
|
|
string_cache = "0.8"
|
2018-11-16 05:56:04 +03:00
|
|
|
either = "1.5"
|
2019-10-02 07:53:56 +03:00
|
|
|
scoped-tls = { version = "1" }
|
2019-01-17 17:17:16 +03:00
|
|
|
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"
|
2019-11-24 08:17:27 +03:00
|
|
|
hashbrown = "0.6"
|
2019-01-17 17:17:16 +03:00
|
|
|
termcolor = "1.0"
|
2020-01-15 12:00:08 +03:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2020-02-29 04:29:34 +03:00
|
|
|
dashmap = "=3.5.1"
|
2020-01-30 17:29:12 +03:00
|
|
|
fxhash = "0.2.1"
|
2020-03-02 14:49:08 +03:00
|
|
|
sourcemap = "5"
|
2020-01-15 12:00:08 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-02-18 06:27:13 +03:00
|
|
|
rayon = "1"
|
2020-02-29 04:29:34 +03:00
|
|
|
serde_json = "1"
|