[package] authors = ["강동윤 "] description = "Compatibility layer between babel and swc" documentation = "https://rustdoc.swc.rs/swc_babel_compat/" edition = "2018" license = "Apache-2.0/MIT" name = "swc_babel_compat" publish = false repository = "https://github.com/swc-project/swc.git" version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] ahash = {version = "0.7.0", features = ["compile-time-rng"]} anyhow = "1" copyless = "0.1.5" rayon = "1.5.0" serde = {version = "1", features = ["derive"]} serde_json = "1.0.62" swc = {path = "../.."} swc_atoms = {path = "../../atoms"} swc_babel_ast = {path = "../ast"} swc_babel_visit = {path = "../visit"} swc_common = {path = "../../common", features = ["sourcemap"]} swc_ecma_ast = {path = "../../ecmascript/ast"} swc_ecma_parser = {path = "../../ecmascript/parser"} swc_ecma_utils = {path = "../../ecmascript/utils"} swc_ecma_visit = {path = "../../ecmascript/visit"} swc_node_base = {path = "../../node/base"} [dev-dependencies] pretty_assertions = "0.7.1" swc_ecma_transforms = {path = "../../ecmascript/transforms/"} walkdir = "2"