swc/crates/swc_plugin/Cargo.toml

26 lines
1.0 KiB
TOML
Raw Normal View History

[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"
repository = "https://github.com/swc-project/swc.git"
2022-01-03 11:45:09 +03:00
version = "0.19.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
abi_stable = "0.10.3"
anyhow = "1.0.41"
2021-12-07 08:34:44 +03:00
rplugin = {version = "0.3.0", path = "../rplugin"}
serde = {version = "1.0.126", features = ["derive"]}
2021-11-09 14:42:49 +03:00
serde_json = "1.0.64"
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"}
swc_node_base = {version = "0.5.1", path = "../swc_node_base"}
2022-01-03 11:45:09 +03:00
swc_plugin_js_api = {version = "0.6.0", path = "../swc_plugin_js_api"}