2021-08-25 18:07:09 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2022-01-12 12:32:52 +03:00
|
|
|
description = "SDK for authoring swc plugin"
|
2021-11-09 14:42:49 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_plugin/"
|
2022-01-12 12:32:52 +03:00
|
|
|
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"
|
2021-08-25 18:07:09 +03:00
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2022-01-12 12:39:56 +03:00
|
|
|
version = "0.25.0"
|
2021-08-25 18:07:09 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2022-01-12 12:39:56 +03:00
|
|
|
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"}
|
2022-01-10 15:34:16 +03:00
|
|
|
swc_atoms = {version = "0.2.0", path = "../swc_atoms"}
|
2022-01-12 12:32:52 +03:00
|
|
|
swc_plugin_macro = {version = "0.1.0", path = "../swc_plugin_macro"}
|