swc/crates/dbg-swc/Cargo.toml
2024-07-14 04:20:45 +00:00

44 lines
1.5 KiB
TOML

[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Debug utilities"
edition = "2021"
license = "Apache-2.0"
name = "dbg-swc"
repository = { workspace = true }
version = "0.97.2"
[[bin]]
bench = false
name = "dbg-swc"
[dependencies]
anyhow = { workspace = true }
dialoguer = { workspace = true }
flate2 = { workspace = true }
rayon = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
sha1 = { workspace = true }
tempfile = { workspace = true }
tracing = { workspace = true }
url = { workspace = true }
clap = { version = "3", features = ["derive"] }
tracing-subscriber = { workspace = true, features = ["fmt", "env-filter"] }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.35.0", features = [
"concurrent",
"tty-emitter",
], path = "../swc_common" }
swc_ecma_ast = { version = "0.116.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.152.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.198.0", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.147.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.141.0", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.102.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.19.0", path = "../swc_error_reporters" }
swc_timer = { version = "0.23.0", path = "../swc_timer" }