swc/crates/dbg-swc/Cargo.toml

43 lines
1.5 KiB
TOML
Raw Normal View History

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"
2023-09-15 09:07:28 +03:00
version = "0.87.10"
2022-05-13 09:05:21 +03:00
[[bin]]
bench = false
2022-08-11 12:52:44 +03:00
name = "dbg-swc"
2022-05-13 09:05:21 +03:00
[dependencies]
2023-06-22 10:40:41 +03:00
anyhow = "1.0.71"
clap = { version = "3", features = ["derive"] }
dialoguer = "0.10.2"
flate2 = "1.0"
2023-06-22 10:40:41 +03:00
rayon = "1.7.0"
serde = "1"
serde_json = "1"
2023-06-22 16:37:35 +03:00
sha1 = "0.10.5"
tempfile = "3.6.0"
2023-06-22 10:40:41 +03:00
tracing = "0.1.37"
2023-06-22 16:37:35 +03:00
tracing-subscriber = { version = "0.3.17", features = ["fmt", "env-filter"] }
url = "2"
2023-08-24 11:20:56 +03:00
swc_atoms = { version = "0.5.9", path = "../swc_atoms" }
2023-08-31 16:25:10 +03:00
swc_common = { version = "0.32.1", features = [
"concurrent",
"tty-emitter",
], path = "../swc_common" }
2023-08-31 16:25:10 +03:00
swc_ecma_ast = { version = "0.109.1", path = "../swc_ecma_ast" }
2023-09-11 11:33:49 +03:00
swc_ecma_codegen = { version = "0.145.2", path = "../swc_ecma_codegen" }
2023-09-14 10:19:55 +03:00
swc_ecma_minifier = { version = "0.187.7", path = "../swc_ecma_minifier", features = [
2022-08-11 12:52:44 +03:00
"concurrent",
] }
2023-09-05 15:26:15 +03:00
swc_ecma_parser = { version = "0.140.0", path = "../swc_ecma_parser" }
2023-09-11 11:33:49 +03:00
swc_ecma_transforms_base = { version = "0.133.2", path = "../swc_ecma_transforms_base" }
2023-08-31 16:25:10 +03:00
swc_ecma_visit = { version = "0.95.1", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.16.1", path = "../swc_error_reporters" }
swc_timer = { version = "0.20.1", path = "../swc_timer" }