mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 22:56:11 +03:00
17 lines
345 B
TOML
17 lines
345 B
TOML
[package]
|
|
description = "Commandline for swc"
|
|
name = "swc_cli"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
|
|
[[bin]]
|
|
name = "swc"
|
|
path = "./src/main.rs"
|
|
|
|
[dependencies]
|
|
structopt = { version = "0.3.25", features = [ "paw" ] }
|
|
paw = "1.0"
|