swc/ecmascript/babel/compat/Cargo.toml
강동윤 6896a83d54
fix(es/codegen): Fix codegen of ~ (#2104)
swc_ecma_codegen:
 - Emit pending semi on `~`. (#2091)
2021-08-19 17:21:08 +09:00

36 lines
1.1 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_atoms = {path = "../../../atoms"}
swc_babel_ast = {path = "../ast"}
swc_babel_visit = {path = "../visit"}
swc_common = {path = "../../../common", features = ["sourcemap"]}
swc_ecma_ast = {path = "../../ast"}
swc_ecma_parser = {path = "../../parser"}
swc_ecma_utils = {path = "../../utils"}
swc_ecma_visit = {path = "../../visit"}
swc_node_base = {path = "../../../node/base"}
[dev-dependencies]
pretty_assertions = "0.7.1"
swc_ecma_transforms = {path = "../../transforms/"}
walkdir = "2"