swc/crates/dbg-swc/Cargo.toml

42 lines
1.3 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-03-12 07:52:09 +03:00
version = "0.75.0"
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]
anyhow = "1.0.57"
clap = { version = "3", features = ["derive"] }
dialoguer = "0.10.2"
flate2 = "1.0"
2022-05-13 09:05:21 +03:00
rayon = "1.5.2"
serde = "1"
serde_json = "1"
sha1 = "0.10.1"
2023-03-08 05:51:08 +03:00
swc_atoms = { version = "0.4.39", path = "../swc_atoms" }
2023-03-11 06:44:48 +03:00
swc_common = { version = "0.29.37", features = [
"concurrent",
"tty-emitter",
], path = "../swc_common" }
2023-03-12 07:52:09 +03:00
swc_ecma_ast = { version = "0.100.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.135.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.175.0", path = "../swc_ecma_minifier", features = [
2022-08-11 12:52:44 +03:00
"concurrent",
] }
2023-03-12 07:52:09 +03:00
swc_ecma_parser = { version = "0.130.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.122.0", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.86.0", path = "../swc_ecma_visit" }
2023-03-11 06:44:48 +03:00
swc_error_reporters = { version = "0.13.38", path = "../swc_error_reporters" }
swc_timer = { version = "0.17.39", path = "../swc_timer" }
2023-03-05 09:40:35 +03:00
tempfile = "3.4.0"
2022-05-13 09:05:21 +03:00
tracing = "0.1.34"
tracing-subscriber = { version = "0.3.11", features = ["fmt", "env-filter"] }
2022-05-13 09:05:21 +03:00
url = "2"