mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 02:06:08 +03:00
43 lines
1.5 KiB
TOML
43 lines
1.5 KiB
TOML
[package]
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
description = "Debug utilities"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
name = "dbg-swc"
|
|
repository = "https://github.com/kdy1/dbg-swc.git"
|
|
version = "0.90.36"
|
|
|
|
[[bin]]
|
|
bench = false
|
|
name = "dbg-swc"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.71"
|
|
clap = { version = "3", features = ["derive"] }
|
|
dialoguer = "0.10.2"
|
|
flate2 = "1.0"
|
|
rayon = "1.7.0"
|
|
serde = "1"
|
|
serde_json = "1"
|
|
sha1 = "0.10.5"
|
|
tempfile = "3.6.0"
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = { version = "0.3.17", features = ["fmt", "env-filter"] }
|
|
url = "2"
|
|
|
|
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
|
|
swc_common = { version = "0.33.14", features = [
|
|
"concurrent",
|
|
"tty-emitter",
|
|
], path = "../swc_common" }
|
|
swc_ecma_ast = { version = "0.111.0", path = "../swc_ecma_ast" }
|
|
swc_ecma_codegen = { version = "0.147.0", path = "../swc_ecma_codegen" }
|
|
swc_ecma_minifier = { version = "0.191.1", path = "../swc_ecma_minifier", features = [
|
|
"concurrent",
|
|
] }
|
|
swc_ecma_parser = { version = "0.142.0", path = "../swc_ecma_parser" }
|
|
swc_ecma_transforms_base = { version = "0.136.0", path = "../swc_ecma_transforms_base" }
|
|
swc_ecma_visit = { version = "0.97.0", path = "../swc_ecma_visit" }
|
|
swc_error_reporters = { version = "0.17.13", path = "../swc_error_reporters" }
|
|
swc_timer = { version = "0.21.15", path = "../swc_timer" }
|