swc_plugin_proxy 0.46.0

Proxy structs to the hosts original structs for the plugin
Documentation
[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"
version     = "0.46.0"

[lib]
bench = false

[features]
__rkyv    = []
rkyv-impl = ["__rkyv", "rkyv"]

__plugin_mode = []
__plugin_rt   = []
# swc/core, which runs plugin
plugin-mode = ["__plugin_mode", "swc_common/plugin-base", "rkyv-impl"]
plugin-rt   = ["__plugin_rt", "swc_common/plugin-base", "rkyv-impl"]

[dependencies]

rkyv = { workspace = true, features = [
  "strict",
  "validation",
], optional = true }
tracing = { workspace = true }

better_scoped_tls = { version = "0.1.1", path = "../better_scoped_tls" }
swc_common        = { version = "0.36.0", path = "../swc_common" }
swc_ecma_ast      = { version = "0.117.0", path = "../swc_ecma_ast" }
swc_trace_macro   = { version = "0.1.3", path = "../swc_trace_macro" }