swc/crates/dbg-swc/Cargo.toml
2024-10-21 03:52:08 +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 = "1.0.0"
[[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 = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "1.0.0", features = [
"concurrent",
"tty-emitter",
], path = "../swc_common" }
swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "1.0.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "1.0.2", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "1.0.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "2.0.0", path = "../swc_error_reporters" }
swc_timer = { version = "1.0.0", path = "../swc_timer" }