2021-08-25 18:07:09 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "Base for swc plugins"
|
2021-11-09 14:42:49 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_plugin/"
|
2021-12-30 12:59:18 +03:00
|
|
|
edition = "2021"
|
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-04 08:19:00 +03:00
|
|
|
version = "0.20.0"
|
2021-08-25 18:07:09 +03:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-12-29 09:27:51 +03:00
|
|
|
abi_stable = "0.10.3"
|
2021-08-25 18:07:09 +03:00
|
|
|
anyhow = "1.0.41"
|
2021-12-07 08:34:44 +03:00
|
|
|
rplugin = {version = "0.3.0", path = "../rplugin"}
|
2021-11-28 11:02:14 +03:00
|
|
|
serde = {version = "1.0.126", features = ["derive"]}
|
2021-11-09 14:42:49 +03:00
|
|
|
serde_json = "1.0.64"
|
2021-11-10 10:39:01 +03:00
|
|
|
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
|
2021-12-07 08:34:44 +03:00
|
|
|
swc_common = {version = "0.15.0", path = "../swc_common", features = ["plugin-mode"]}
|
2022-01-03 11:45:09 +03:00
|
|
|
swc_ecma_ast = {version = "0.61.0", path = "../swc_ecma_ast"}
|
|
|
|
swc_ecma_plugin_ast = {version = "0.8.0", path = "../swc_ecma_plugin_ast"}
|
|
|
|
swc_ecma_visit = {version = "0.47.0", path = "../swc_ecma_visit"}
|
2021-11-28 11:02:14 +03:00
|
|
|
swc_node_base = {version = "0.5.1", path = "../swc_node_base"}
|
2022-01-04 08:19:00 +03:00
|
|
|
swc_plugin_js_api = {version = "0.7.0", path = "../swc_plugin_js_api"}
|