swc/crates/swc_plugin_proxy/Cargo.toml

29 lines
828 B
TOML
Raw Normal View History

[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>", "OJ Kwon <kwon.ohjoong@gmail.com>"]
description = "Proxy structs to the hosts original structs for the plugin"
edition = "2021"
license = "Apache-2.0"
name = "swc_plugin_proxy"
repository = "https://github.com/swc-project/swc.git"
2022-08-17 08:28:18 +03:00
version = "0.18.13"
[lib]
bench = false
[features]
# swc/core, which runs plugin
plugin-rt = []
# actual wasm plugin binary
plugin-mode = []
[dependencies]
2022-04-08 11:34:58 +03:00
better_scoped_tls = { version = "0.1.0", path = "../better_scoped_tls" }
bytecheck = "0.6.9"
rkyv = "=0.7.37"
swc_common = { version = "0.27.7", path = "../swc_common", features = [
"plugin-base",
2022-04-08 11:34:58 +03:00
] }
2022-08-17 08:28:18 +03:00
swc_ecma_ast = { version = "0.90.10", path = "../swc_ecma_ast" }
2022-08-13 08:09:52 +03:00
swc_trace_macro = { version = "0.1.2", path = "../swc_trace_macro" }
tracing = "0.1.32"