2022-05-13 09:05:21 +03:00
|
|
|
[package]
|
2022-08-11 12:52:44 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2022-05-13 09:05:21 +03:00
|
|
|
description = "Debug utilities"
|
2022-08-11 12:52:44 +03:00
|
|
|
edition = "2021"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "dbg-swc"
|
|
|
|
repository = "https://github.com/kdy1/dbg-swc.git"
|
2022-08-19 09:06:11 +03:00
|
|
|
version = "0.43.7"
|
2022-05-13 09:05:21 +03:00
|
|
|
|
2022-05-13 12:13:23 +03:00
|
|
|
[[bin]]
|
|
|
|
bench = false
|
2022-08-11 12:52:44 +03:00
|
|
|
name = "dbg-swc"
|
2022-05-13 12:13:23 +03:00
|
|
|
|
2022-05-13 09:05:21 +03:00
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.57"
|
2022-05-13 12:13:23 +03:00
|
|
|
clap = { version = "3", features = ["derive"] }
|
2022-05-13 09:05:21 +03:00
|
|
|
rayon = "1.5.2"
|
2022-05-13 17:25:16 +03:00
|
|
|
sha1 = "0.10.1"
|
2022-08-13 13:11:26 +03:00
|
|
|
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
|
2022-08-14 10:48:15 +03:00
|
|
|
swc_common = { version = "0.27.7", features = [
|
2022-05-13 12:13:23 +03:00
|
|
|
"concurrent",
|
|
|
|
], path = "../swc_common" }
|
2022-08-17 08:28:18 +03:00
|
|
|
swc_ecma_ast = { version = "0.90.10", path = "../swc_ecma_ast" }
|
|
|
|
swc_ecma_codegen = { version = "0.121.5", path = "../swc_ecma_codegen" }
|
|
|
|
swc_ecma_minifier = { version = "0.144.7", path = "../swc_ecma_minifier", features = [
|
2022-08-11 12:52:44 +03:00
|
|
|
"concurrent",
|
|
|
|
] }
|
2022-08-17 08:28:18 +03:00
|
|
|
swc_ecma_parser = { version = "0.117.5", path = "../swc_ecma_parser" }
|
|
|
|
swc_ecma_transforms_base = { version = "0.103.8", path = "../swc_ecma_transforms_base" }
|
|
|
|
swc_ecma_visit = { version = "0.76.6", path = "../swc_ecma_visit" }
|
2022-08-13 13:11:26 +03:00
|
|
|
swc_error_reporters = { version = "0.11.4", path = "../swc_error_reporters" }
|
|
|
|
swc_timer = { version = "0.15.4", path = "../swc_timer" }
|
2022-05-16 06:49:42 +03:00
|
|
|
tempdir = "0.3.7"
|
2022-05-13 09:05:21 +03:00
|
|
|
tracing = "0.1.34"
|
2022-05-13 12:13:23 +03:00
|
|
|
tracing-subscriber = { version = "0.3.11", features = ["fmt", "env-filter"] }
|
2022-05-13 09:05:21 +03:00
|
|
|
url = "2"
|