swc/crates/swc_plugin/Cargo.toml

32 lines
971 B
TOML
Raw Normal View History

[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "SDK for authoring swc plugin"
2021-11-09 14:42:49 +03:00
documentation = "https://rustdoc.swc.rs/swc_plugin/"
edition = "2018"
2021-12-01 08:20:52 +03:00
license = "Apache-2.0"
2021-11-09 14:42:49 +03:00
name = "swc_plugin"
repository = "https://github.com/swc-project/swc.git"
2022-05-26 14:35:19 +03:00
version = "0.55.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[lib]
bench = false
[features]
quote = ["swc_ecma_quote"]
[dependencies]
2022-04-05 08:44:51 +03:00
swc_atoms = { version = "0.2.0", path = "../swc_atoms" }
2022-05-11 19:17:07 +03:00
swc_common = { version = "0.18.0", path = "../swc_common", features = [
"plugin-mode",
2022-04-05 08:44:51 +03:00
] }
2022-05-11 19:17:07 +03:00
swc_ecma_quote = { version = "0.17.0", path = "../swc_ecma_quote", optional = true }
2022-05-26 14:35:19 +03:00
swc_ecmascript = { version = "0.158.0", path = "../swc_ecmascript", features = ["utils", "visit", "rkyv-impl"] }
2022-05-11 19:17:07 +03:00
swc_plugin_proxy = { version = "0.3.0", path = "../swc_plugin_proxy", features = [
"plugin-mode",
2022-04-05 08:44:51 +03:00
] }
2022-04-20 17:15:56 +03:00
swc_plugin_macro = { version = "0.4.1", path = "../swc_plugin_macro" }