mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 17:54:15 +03:00
48 lines
1.4 KiB
TOML
48 lines
1.4 KiB
TOML
[package]
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>", "OJ Kwon <kwon.ohjoong@gmail.com>"]
|
|
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.35.1"
|
|
|
|
[[bin]]
|
|
name = "swc"
|
|
path = "./src/main.rs"
|
|
|
|
[features]
|
|
default = []
|
|
plugin = [
|
|
"swc/plugin",
|
|
"swc_plugin_runner/filesystem_cache",
|
|
"wasmer/default",
|
|
"wasmer-wasi/default",
|
|
]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.53"
|
|
atty = "0.2.14"
|
|
clap = { version = "3.1.0", features = ["derive", "wrap_help"] }
|
|
rayon = "1"
|
|
relative-path = "1.6.1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = { version = "1", features = ["unbounded_depth"] }
|
|
swc = { version = "0.161.0", path = "../swc" }
|
|
swc_common = { version = "0.17.5", path = "../swc_common" }
|
|
swc_trace_macro = { version = "0.1.0", path = "../swc_trace_macro" }
|
|
swc_plugin_runner = { version = "0.48.0", path = "../swc_plugin_runner", default-features = false, optional = true }
|
|
tracing = "0.1.32"
|
|
tracing-chrome = "0.5.0"
|
|
tracing-futures = "0.2.5"
|
|
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
|
|
walkdir = "2"
|
|
wasmer = { version = "2.2.1", optional = true }
|
|
wasmer-wasi = { version = "2.2.1", optional = true }
|
|
glob = "0.3.0"
|
|
|
|
[dependencies.path-absolutize]
|
|
features = ["once_cell_cache"]
|
|
version = "3.0.11"
|