mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 12:12:16 +03:00
82ef06afb8
swc_babel_compat: - Optimize. swc: - Improve performance of comment storage.
33 lines
1.1 KiB
TOML
33 lines
1.1 KiB
TOML
[package]
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
description = "Compatibility layer between babel and swc"
|
|
edition = "2018"
|
|
license = "MIT"
|
|
name = "swc_babel_compat"
|
|
publish = false
|
|
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 = {version = "0.2.5", path = "../../atoms"}
|
|
swc_babel_ast = {path = "../ast"}
|
|
swc_babel_visit = {path = "../visit"}
|
|
swc_common = {version = "0.10.9", path = "../../common", features = ["tty-emitter", "sourcemap"]}
|
|
swc_ecma_ast = {version = "0.43", path = "../../ecmascript/ast"}
|
|
swc_ecma_parser = {version = "0.54.2", path = "../../ecmascript/parser"}
|
|
swc_ecma_visit = {version = "0.29.1", path = "../../ecmascript/visit"}
|
|
swc_node_base = {path = "../../node/base"}
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.7.1"
|
|
swc_ecma_transforms = {path = "../../ecmascript/transforms/"}
|
|
walkdir = "2"
|