swc/crates/swc_babel_compat/Cargo.toml
2021-11-09 20:42:49 +09:00

36 lines
1.2 KiB
TOML

[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
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"}
swc_atoms = {path = "../../atoms"}
swc_babel_ast = {path = "../swc_babel_ast"}
swc_babel_visit = {path = "../swc_babel_visit"}
swc_common = {path = "../../common", features = ["sourcemap", "tty-emitter"]}
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"