mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
36 lines
1.1 KiB
TOML
36 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.45.0"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[features]
|
|
quote = ["swc_ecma_quote"]
|
|
|
|
[dependencies]
|
|
swc_atoms = { version = "0.2.0", path = "../swc_atoms" }
|
|
swc_common = { version = "0.17.20", path = "../swc_common", features = [
|
|
"plugin-mode",
|
|
] }
|
|
swc_ecma_ast = { version = "0.75.0", path = "../swc_ecma_ast", features = [
|
|
"rkyv-impl",
|
|
] }
|
|
swc_ecma_quote = { version = "0.11.0", path = "../swc_ecma_quote", optional = true }
|
|
swc_ecma_visit = { version = "0.61.0", path = "../swc_ecma_visit" }
|
|
swc_ecma_utils = { version = "0.79.0", path = "../swc_ecma_utils" }
|
|
swc_plugin_comments = { version = "0.1.1", path = "../swc_plugin_comments", features = [
|
|
"plugin-mode",
|
|
] }
|
|
swc_plugin_macro = { version = "0.4.0", path = "../swc_plugin_macro" }
|