2021-05-01 12:09:10 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "Compatibility layer between babel and swc"
|
2021-05-09 15:04:42 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_babel_compat/"
|
2021-05-01 12:09:10 +03:00
|
|
|
edition = "2018"
|
2021-05-09 15:04:42 +03:00
|
|
|
license = "Apache-2.0/MIT"
|
2021-05-01 12:09:10 +03:00
|
|
|
name = "swc_babel_compat"
|
2021-05-21 09:57:17 +03:00
|
|
|
publish = false
|
2021-05-09 15:04:42 +03:00
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2021-05-01 12:09:10 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-05-06 08:56:54 +03:00
|
|
|
ahash = {version = "0.7.0", features = ["compile-time-rng"]}
|
2021-05-03 07:34:13 +03:00
|
|
|
anyhow = "1"
|
2021-05-06 08:56:54 +03:00
|
|
|
copyless = "0.1.5"
|
|
|
|
rayon = "1.5.0"
|
2021-05-01 12:09:10 +03:00
|
|
|
serde = {version = "1", features = ["derive"]}
|
|
|
|
serde_json = "1.0.62"
|
|
|
|
swc = {path = "../.."}
|
2021-05-09 15:04:42 +03:00
|
|
|
swc_atoms = {path = "../../atoms"}
|
2021-05-06 08:56:54 +03:00
|
|
|
swc_babel_ast = {path = "../ast"}
|
|
|
|
swc_babel_visit = {path = "../visit"}
|
2021-08-13 10:05:40 +03:00
|
|
|
swc_common = {path = "../../common", features = ["sourcemap"]}
|
2021-05-09 15:04:42 +03:00
|
|
|
swc_ecma_ast = {path = "../../ecmascript/ast"}
|
|
|
|
swc_ecma_parser = {path = "../../ecmascript/parser"}
|
2021-06-27 18:30:40 +03:00
|
|
|
swc_ecma_utils = {path = "../../ecmascript/utils"}
|
2021-05-09 15:04:42 +03:00
|
|
|
swc_ecma_visit = {path = "../../ecmascript/visit"}
|
2021-05-06 08:56:54 +03:00
|
|
|
swc_node_base = {path = "../../node/base"}
|
2021-05-01 12:09:10 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
pretty_assertions = "0.7.1"
|
2021-05-06 08:56:54 +03:00
|
|
|
swc_ecma_transforms = {path = "../../ecmascript/transforms/"}
|
2021-05-01 12:09:10 +03:00
|
|
|
walkdir = "2"
|