dbg-swc 10.0.0

Debug utilities
[package]
authors     = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Debug utilities"
edition     = { workspace = true }
license     = { workspace = true }
name        = "dbg-swc"
repository  = { workspace = true }
version     = "10.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 = "3.0.4", path = "../swc_atoms" }
swc_common = { version = "6.0.0", features = [
  "concurrent",
  "tty-emitter",
], path = "../swc_common" }
swc_ecma_ast = { version = "6.0.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "6.0.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "10.0.0", path = "../swc_ecma_minifier", features = [
  "concurrent",
] }
swc_ecma_parser = { version = "8.0.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "9.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "6.0.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "7.0.0", path = "../swc_error_reporters" }
swc_timer = { version = "1.0.0", path = "../swc_timer" }