swc/crates/dbg-swc/Cargo.toml
2022-01-10 15:05:26 +09:00

38 lines
1.8 KiB
TOML

[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Debug tools for swc"
documentation = "https://rustdoc.swc.rs/dbg-swc/"
edition = "2021"
include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "dbg-swc"
repository = "https://github.com/swc-project/swc.git"
version = "0.4.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
pretty_assertions = "1.0.0"
rayon = "1"
structopt = "0.3.25"
swc_atoms = {version = "0.2.9", path = "../swc_atoms/"}
swc_common = {version = "0.16.0", path = "../swc_common/", features = ["concurrent"]}
swc_ecma_ast = {version = "0.63.0", path = "../swc_ecma_ast/"}
swc_ecma_codegen = {version = "0.87.0", path = "../swc_ecma_codegen"}
swc_ecma_dep_graph = {version = "0.56.0", path = "../swc_ecma_dep_graph/"}
swc_ecma_diff = {version = "0.4.0", path = "../swc_ecma_diff/"}
swc_ecma_loader = {version = "0.26.0", path = "../swc_ecma_loader/", features = ["lru", "node", "tsc"]}
swc_ecma_minifier = {version = "0.65.0", path = "../swc_ecma_minifier/"}
swc_ecma_parser = {version = "0.85.0", path = "../swc_ecma_parser/"}
swc_ecma_transforms_base = {version = "0.54.0", path = "../swc_ecma_transforms_base/"}
swc_ecma_transforms_react = {version = "0.72.0", path = "../swc_ecma_transforms_react/"}
swc_ecma_transforms_typescript = {version = "0.74.0", path = "../swc_ecma_transforms_typescript/"}
swc_ecma_utils = {version = "0.61.0", path = "../swc_ecma_utils/"}
swc_ecma_visit = {version = "0.49.0", path = "../swc_ecma_visit/"}
swc_node_comments = {version = "0.3.0", path = "../swc_node_comments/"}
swc_timer = {version = "0.3.0", path = "../swc_timer/"}
tempfile = "3.2.0"
tracing = "0.1.29"
tracing-subscriber = {version = "0.3.5", features = ["env-filter"]}