mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
38 lines
1.8 KiB
TOML
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.9.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.17.0", path = "../swc_common/", features = ["concurrent"]}
|
|
swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast/"}
|
|
swc_ecma_codegen = {version = "0.89.0", path = "../swc_ecma_codegen"}
|
|
swc_ecma_dep_graph = {version = "0.58.0", path = "../swc_ecma_dep_graph/"}
|
|
swc_ecma_diff = {version = "0.6.0", path = "../swc_ecma_diff/"}
|
|
swc_ecma_loader = {version = "0.27.0", path = "../swc_ecma_loader/", features = ["lru", "node", "tsc"]}
|
|
swc_ecma_minifier = {version = "0.70.0", path = "../swc_ecma_minifier/"}
|
|
swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser/"}
|
|
swc_ecma_transforms_base = {version = "0.57.0", path = "../swc_ecma_transforms_base/"}
|
|
swc_ecma_transforms_react = {version = "0.76.0", path = "../swc_ecma_transforms_react/"}
|
|
swc_ecma_transforms_typescript = {version = "0.78.0", path = "../swc_ecma_transforms_typescript/"}
|
|
swc_ecma_utils = {version = "0.64.0", path = "../swc_ecma_utils/"}
|
|
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit/"}
|
|
swc_node_comments = {version = "0.4.0", path = "../swc_node_comments/"}
|
|
swc_timer = {version = "0.4.0", path = "../swc_timer/"}
|
|
tempfile = "3.2.0"
|
|
tracing = "0.1.29"
|
|
tracing-subscriber = {version = "0.3.5", features = ["env-filter"]}
|