2021-12-20 09:03:00 +03:00
|
|
|
[package]
|
2023-01-28 21:32:28 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>", "OJ Kwon <kwon.ohjoong@gmail.com>"]
|
2022-02-12 07:48:40 +03:00
|
|
|
description = "Commandline for SWC"
|
2023-01-28 21:32:28 +03:00
|
|
|
edition = "2021"
|
|
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_cli"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2024-10-10 09:07:50 +03:00
|
|
|
version = "0.91.422"
|
2021-12-20 09:03:00 +03:00
|
|
|
|
|
|
|
[[bin]]
|
2022-04-04 14:12:03 +03:00
|
|
|
bench = false
|
2023-01-28 21:32:28 +03:00
|
|
|
name = "swc"
|
|
|
|
path = "./src/main.rs"
|
2021-12-20 09:03:00 +03:00
|
|
|
|
2022-03-16 01:45:40 +03:00
|
|
|
[features]
|
2024-01-17 13:35:29 +03:00
|
|
|
default = ["swc_cli_impl/default"]
|
|
|
|
plugin = ["swc_cli_impl/plugin"]
|
2022-03-16 01:45:40 +03:00
|
|
|
|
2021-12-20 09:03:00 +03:00
|
|
|
[dependencies]
|
2024-07-18 02:00:45 +03:00
|
|
|
anyhow = { workspace = true }
|
|
|
|
swc_cli_impl = { workspace = true }
|