2018-11-03 10:56:43 +03:00
|
|
|
[package]
|
2019-10-25 04:11:24 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2018-11-18 08:00:07 +03:00
|
|
|
description = "rust port of babel and closure compiler."
|
2020-09-21 16:53:48 +03:00
|
|
|
documentation = "https://swc.rs/rustdoc/swc_ecma_transforms/"
|
2019-11-17 07:21:53 +03:00
|
|
|
edition = "2018"
|
2020-08-30 07:30:50 +03:00
|
|
|
license = "Apache-2.0/MIT"
|
|
|
|
name = "swc_ecma_transforms"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2020-10-06 17:27:23 +03:00
|
|
|
version = "0.25.1"
|
2018-11-03 10:56:43 +03:00
|
|
|
|
2020-08-03 19:33:23 +03:00
|
|
|
[features]
|
|
|
|
const-modules = ["dashmap"]
|
|
|
|
default = []
|
2020-08-30 07:30:50 +03:00
|
|
|
react = ["dashmap"]
|
2020-08-03 19:33:23 +03:00
|
|
|
|
2018-11-03 10:56:43 +03:00
|
|
|
[dependencies]
|
2020-08-30 07:30:50 +03:00
|
|
|
Inflector = {version = "0.11.4", default-features = false}
|
|
|
|
arrayvec = "0.5.1"
|
|
|
|
dashmap = {version = "3", optional = true}
|
2018-12-30 05:57:27 +03:00
|
|
|
either = "1.5"
|
2019-02-05 06:50:19 +03:00
|
|
|
fxhash = "0.2"
|
2019-06-25 03:38:26 +03:00
|
|
|
indexmap = "1"
|
2020-08-30 07:30:50 +03:00
|
|
|
is-macro = "0.1"
|
2020-09-23 08:27:27 +03:00
|
|
|
jsdoc = {version = "0.6.0", path = "../jsdoc"}
|
2020-08-30 07:30:50 +03:00
|
|
|
log = "0.4.8"
|
2020-01-30 17:29:12 +03:00
|
|
|
once_cell = "1"
|
2019-01-24 10:07:09 +03:00
|
|
|
ordered-float = "1.0.1"
|
2020-09-06 09:09:02 +03:00
|
|
|
phf = {version = "0.8.0", features = ["macros"]}
|
2019-12-21 10:59:04 +03:00
|
|
|
regex = "1"
|
2020-08-30 07:30:50 +03:00
|
|
|
retain_mut = "=0.1.1"
|
|
|
|
scoped-tls = "1"
|
|
|
|
serde = {version = "1", features = ["derive"]}
|
2019-12-01 11:32:44 +03:00
|
|
|
serde_json = "1"
|
2019-12-13 09:21:25 +03:00
|
|
|
smallvec = "1"
|
2020-08-30 07:30:50 +03:00
|
|
|
swc_atoms = {version = "0.2.0", path = "../../atoms"}
|
|
|
|
swc_common = {version = "0.10.0", path = "../../common"}
|
2020-09-23 08:27:27 +03:00
|
|
|
swc_ecma_ast = {version = "0.32.0", path = "../ast"}
|
|
|
|
swc_ecma_parser = {version = "0.38.0", path = "../parser"}
|
2020-09-09 09:16:44 +03:00
|
|
|
swc_ecma_transforms_macros = {version = "0.1.1", path = "./macros"}
|
2020-09-23 08:27:27 +03:00
|
|
|
swc_ecma_utils = {version = "0.22.0", path = "../utils"}
|
|
|
|
swc_ecma_visit = {version = "0.18.0", path = "../visit"}
|
2020-08-30 07:30:50 +03:00
|
|
|
unicode-xid = "0.2"
|
2018-11-03 10:56:43 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-11-24 08:17:27 +03:00
|
|
|
pretty_assertions = "0.6"
|
2020-06-20 09:09:57 +03:00
|
|
|
sourcemap = "6"
|
2020-09-23 08:27:27 +03:00
|
|
|
swc_ecma_codegen = {version = "0.36.0", path = "../codegen"}
|
2020-08-30 07:30:50 +03:00
|
|
|
tempfile = "3"
|
|
|
|
testing = {version = "0.10.0", path = "../../testing"}
|
2020-08-03 19:33:23 +03:00
|
|
|
walkdir = "2"
|