mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 09:52:57 +03:00
17 lines
341 B
TOML
17 lines
341 B
TOML
[package]
|
|
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.1.0"
|
|
|
|
[[bin]]
|
|
name = "swc"
|
|
path = "./src/main.rs"
|
|
|
|
[dependencies]
|
|
paw = "1.0"
|
|
structopt = {version = "0.3.25", features = ["paw"]}
|