2021-12-20 09:03:00 +03:00
|
|
|
[package]
|
|
|
|
description = "Commandline for swc"
|
2021-12-30 12:59:18 +03:00
|
|
|
edition = "2021"
|
2021-12-20 09:03:00 +03:00
|
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
license = "Apache-2.0"
|
2021-12-30 12:59:18 +03:00
|
|
|
name = "swc_cli"
|
2021-12-20 09:03:00 +03:00
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2021-12-30 12:59:18 +03:00
|
|
|
version = "0.1.0"
|
2021-12-20 09:03:00 +03:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "swc"
|
|
|
|
path = "./src/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
paw = "1.0"
|
2021-12-30 12:59:18 +03:00
|
|
|
structopt = {version = "0.3.25", features = ["paw"]}
|