mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
c6dce67494
swc_common: - Add some utilities for `Handler`. swc: - Remove `Compiler.handler`. - Accept `handler` for each operations. (#2035)
36 lines
1.2 KiB
TOML
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_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"
|