mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 17:54:15 +03:00
17 lines
669 B
TOML
17 lines
669 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.25.0"
|
|
|
|
[dependencies]
|
|
swc_common = {version = "0.17.0", path = "../swc_common", features = ["plugin-mode"]}
|
|
swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast", features = ["rkyv-impl"]}
|
|
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
|
|
swc_atoms = {version = "0.2.0", path = "../swc_atoms"}
|
|
swc_plugin_macro = {version = "0.1.0", path = "../swc_plugin_macro"}
|