mirror of
https://github.com/swc-project/swc.git
synced 2024-11-27 13:38:33 +03:00
35 lines
1.2 KiB
TOML
35 lines
1.2 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.39.0"
|
|
|
|
[[bin]]
|
|
bench = false
|
|
name = "dbg-swc"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.57"
|
|
clap = { version = "3", features = ["derive"] }
|
|
rayon = "1.5.2"
|
|
sha1 = "0.10.1"
|
|
swc_atoms = { version = "0.2.11", path = "../swc_atoms" }
|
|
swc_common = { version = "0.24.2", features = [
|
|
"concurrent",
|
|
], path = "../swc_common" }
|
|
swc_ecma_ast = { version = "0.87.0", path = "../swc_ecma_ast" }
|
|
swc_ecma_codegen = { version = "0.118.0", path = "../swc_ecma_codegen" }
|
|
swc_ecma_minifier = { version = "0.140.0", path = "../swc_ecma_minifier" }
|
|
swc_ecma_parser = { version = "0.114.0", path = "../swc_ecma_parser" }
|
|
swc_ecma_transforms_base = { version = "0.100.0", path = "../swc_ecma_transforms_base" }
|
|
swc_ecma_visit = { version = "0.73.0", path = "../swc_ecma_visit" }
|
|
swc_error_reporters = { version = "0.8.0", path = "../swc_error_reporters" }
|
|
swc_timer = { version = "0.12.0", path = "../swc_timer" }
|
|
tempdir = "0.3.7"
|
|
tracing = "0.1.34"
|
|
tracing-subscriber = { version = "0.3.11", features = ["fmt", "env-filter"] }
|
|
url = "2"
|