mirror of
https://github.com/swc-project/swc.git
synced 2024-11-27 13:38:33 +03:00
32 lines
823 B
TOML
32 lines
823 B
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.10.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.136.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"
|
|
|
|
[dependencies.path-absolutize]
|
|
version = "3.0.11"
|
|
features = ["once_cell_cache"]
|
|
|
|
[features]
|