2021-01-05 08:29:52 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "rust port of babel and closure compiler."
|
2021-03-31 07:09:10 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_ecma_transforms_compat/"
|
2021-01-05 08:29:52 +03:00
|
|
|
edition = "2018"
|
|
|
|
license = "Apache-2.0/MIT"
|
|
|
|
name = "swc_ecma_transforms_compat"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2021-05-09 15:04:42 +03:00
|
|
|
version = "0.15.0"
|
2021-01-05 08:29:52 +03:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
arrayvec = "0.5.2"
|
|
|
|
fxhash = "0.2.1"
|
|
|
|
indexmap = "1.6.1"
|
|
|
|
is-macro = "0.1.8"
|
|
|
|
num-bigint = "0.2"
|
|
|
|
ordered-float = "2.0.1"
|
|
|
|
serde = {version = "1.0.118", features = ["derive"]}
|
|
|
|
smallvec = "1.6.0"
|
|
|
|
swc_atoms = {version = "0.2.5", path = "../../../atoms"}
|
2021-04-11 09:09:27 +03:00
|
|
|
swc_common = {version = "0.10.16", path = "../../../common"}
|
|
|
|
swc_ecma_ast = {version = "0.43.1", path = "../../ast"}
|
2021-05-09 15:04:42 +03:00
|
|
|
swc_ecma_transforms_base = {version = "0.13.0", path = "../base"}
|
2021-02-20 09:18:09 +03:00
|
|
|
swc_ecma_transforms_macros = {version = "0.2.1", path = "../macros"}
|
2021-04-11 09:09:27 +03:00
|
|
|
swc_ecma_utils = {version = "0.34.1", path = "../../utils"}
|
|
|
|
swc_ecma_visit = {version = "0.29.1", path = "../../visit"}
|
2021-01-05 08:29:52 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-05-09 15:04:42 +03:00
|
|
|
swc_ecma_parser = {version = "0.55.0", path = "../../parser"}
|
|
|
|
swc_ecma_transforms_testing = {version = "0.13.0", path = "../testing"}
|
2021-04-11 09:09:27 +03:00
|
|
|
testing = {version = "0.10.5", path = "../../../testing"}
|