[package] authors = ["강동윤 ", "OJ Kwon "] 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.6.1" [[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.132.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"] } [dependencies.path-absolutize] version = "3.0.11" features = ["once_cell_cache"] [features]