mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 02:06:08 +03:00
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[package]
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
description = "SDK for authoring swc plugin"
|
|
documentation = "https://rustdoc.swc.rs/swc_plugin/"
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
name = "swc_plugin"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
version = "0.87.0"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[features]
|
|
default = ["plugin_transform_schema_v1"]
|
|
quote = ["swc_ecma_quote"]
|
|
plugin_transform_schema_v1 = [
|
|
"swc_common/plugin_transform_schema_v1"
|
|
]
|
|
plugin_transform_schema_vtest = [
|
|
"swc_common/plugin_transform_schema_vtest",
|
|
]
|
|
|
|
[dependencies]
|
|
swc_atoms = { version = "0.3.0", path = "../swc_atoms" }
|
|
swc_common = { version = "0.25.0", path = "../swc_common", features = [
|
|
"plugin-mode",
|
|
] }
|
|
swc_ecma_quote = { version = "0.29.0", path = "../swc_ecma_quote", optional = true }
|
|
swc_ecmascript = { version = "0.185.0", path = "../swc_ecmascript", features = ["utils", "visit", "rkyv-impl"] }
|
|
swc_plugin_proxy = { version = "0.16.0", path = "../swc_plugin_proxy", features = [
|
|
"plugin-mode",
|
|
] }
|
|
swc_plugin_macro = { version = "0.8.0", path = "../swc_plugin_macro" }
|