mirror of
https://github.com/swc-project/swc.git
synced 2024-11-27 13:38:33 +03:00
37 lines
1.0 KiB
TOML
37 lines
1.0 KiB
TOML
[package]
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>", "OJ Kwon <kwon.ohjoong@gmail.com>"]
|
|
description = "Commandline for SWC"
|
|
edition = "2021"
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
license = "Apache-2.0"
|
|
name = "swc_cli"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
version = "0.19.0"
|
|
|
|
[[bin]]
|
|
name = "swc"
|
|
path = "./src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.53"
|
|
clap = { version = "3.1.0", features = ["derive", "wrap_help"] }
|
|
walkdir = "2"
|
|
rayon = "1"
|
|
swc = { version = "0.145.0", path = "../swc" }
|
|
swc_common = { version = "0.17.5", path = "../swc_common" }
|
|
relative-path = "1.6.1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = { version = "1", features = ["unbounded_depth"] }
|
|
atty = "0.2.14"
|
|
swc_trace_macro = {version = "0.1.0", path = "../swc_trace_macro"}
|
|
tracing-chrome = "0.4.0"
|
|
tracing-futures = "0.2.5"
|
|
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
|
|
tracing = "0.1.31"
|
|
|
|
[dependencies.path-absolutize]
|
|
version = "3.0.11"
|
|
features = ["once_cell_cache"]
|
|
|
|
[features]
|