swc/crates/swc_plugin/Cargo.toml
Donny/강동윤 2c861bd9e5
feat(es/ast): Improve Id APIs (#4614)
# API Changes

 - `Ident` now has `to_id()`. This method is added to allow removing an import.
2022-05-11 12:02:14 +09:00

32 lines
972 B
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.51.1"
[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.23", path = "../swc_common", features = [
"plugin-mode",
] }
swc_ecma_quote = { version = "0.15.1", path = "../swc_ecma_quote", optional = true }
swc_ecmascript = { version = "0.154.2", path = "../swc_ecmascript", features = ["utils", "visit", "rkyv-impl"] }
swc_plugin_proxy = { version = "0.2.2", path = "../swc_plugin_proxy", features = [
"plugin-mode",
] }
swc_plugin_macro = { version = "0.4.1", path = "../swc_plugin_macro" }