2021-08-25 18:07:09 +03:00
|
|
|
[package]
|
2022-08-11 12:52:44 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "Runner for swc plugins. This crate is INTERNAL crate and used by swc itself."
|
2021-08-25 18:07:09 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_plugin_runner/"
|
2022-08-11 12:52:44 +03:00
|
|
|
edition = "2021"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_plugin_runner"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2022-10-13 09:12:56 +03:00
|
|
|
version = "0.77.12"
|
2021-08-25 18:07:09 +03:00
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2022-03-17 08:07:03 +03:00
|
|
|
[features]
|
|
|
|
default = ["filesystem_cache"]
|
2022-03-23 10:12:59 +03:00
|
|
|
# Supports a cache allow to store compiled bytecode into filesystem location.
|
|
|
|
# This feature implies in-memory cache enabled always.
|
2022-03-17 08:07:03 +03:00
|
|
|
filesystem_cache = ["wasmer-cache"]
|
2022-03-23 10:12:59 +03:00
|
|
|
# Supports a cache allow to store wasm module in-memory. This avoids recompilation
|
|
|
|
# to the same module in a single procress lifecycle.
|
2022-08-11 12:52:44 +03:00
|
|
|
memory_cache = []
|
|
|
|
plugin_transform_schema_v1 = ["swc_common/plugin_transform_schema_v1"]
|
|
|
|
plugin_transform_schema_vtest = ["swc_common/plugin_transform_schema_vtest"]
|
2022-03-17 08:07:03 +03:00
|
|
|
|
2022-09-09 11:05:51 +03:00
|
|
|
__rkyv = []
|
|
|
|
rkyv-bytecheck-impl = [
|
|
|
|
"__rkyv",
|
|
|
|
"swc_common/plugin-bytecheck-rt",
|
|
|
|
"swc_plugin_proxy/plugin-bytecheck-rt",
|
|
|
|
"swc_ecma_ast/rkyv-bytecheck-impl",
|
|
|
|
]
|
|
|
|
rkyv-impl = [
|
|
|
|
"__rkyv",
|
|
|
|
"swc_common/plugin-rt",
|
|
|
|
"swc_plugin_proxy/plugin-rt",
|
|
|
|
"swc_ecma_ast/rkyv-impl",
|
|
|
|
]
|
|
|
|
|
2021-08-25 18:07:09 +03:00
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.42"
|
2022-03-11 17:00:55 +03:00
|
|
|
once_cell = "1.10.0"
|
2022-02-17 08:16:14 +03:00
|
|
|
parking_lot = "0.12.0"
|
2022-09-30 10:57:15 +03:00
|
|
|
serde = { version = "1.0.126", features = ["derive"] }
|
2021-08-25 18:07:09 +03:00
|
|
|
serde_json = "1.0.64"
|
2022-10-13 09:12:56 +03:00
|
|
|
swc_common = { version = "0.29.8", path = "../swc_common", features = [
|
2022-08-11 12:52:44 +03:00
|
|
|
"concurrent",
|
2022-04-07 08:39:57 +03:00
|
|
|
] }
|
2022-10-13 09:12:56 +03:00
|
|
|
swc_ecma_ast = { version = "0.94.11", path = "../swc_ecma_ast" }
|
|
|
|
swc_plugin_proxy = { version = "0.22.11", path = "../swc_plugin_proxy" }
|
2022-09-09 11:05:51 +03:00
|
|
|
|
2022-03-10 06:15:49 +03:00
|
|
|
tracing = "0.1.32"
|
2022-08-17 08:18:56 +03:00
|
|
|
wasmer = { version = "2.3.0", default-features = false }
|
|
|
|
wasmer-wasi = { version = "2.3.0", default-features = false }
|
2022-03-16 01:45:40 +03:00
|
|
|
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
2022-08-17 08:18:56 +03:00
|
|
|
wasmer-cache = { version = "2.3.0", optional = true }
|
2021-08-25 18:07:09 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-08-11 12:52:44 +03:00
|
|
|
criterion = "0.3"
|
2022-10-13 09:12:56 +03:00
|
|
|
swc_atoms = { version = "0.4.21", path = '../swc_atoms' }
|
|
|
|
swc_ecma_loader = { version = "0.41.9", path = "../swc_ecma_loader" }
|
|
|
|
swc_ecma_parser = { version = "0.122.12", path = "../swc_ecma_parser" }
|
|
|
|
swc_ecma_visit = { version = "0.80.11", path = "../swc_ecma_visit" }
|
2022-08-11 12:52:44 +03:00
|
|
|
swc_node_base = { path = "../swc_node_base" }
|
2022-10-13 09:12:56 +03:00
|
|
|
testing = { version = "0.31.8", path = "../testing" }
|
2022-03-16 01:45:40 +03:00
|
|
|
# This allows we can run non-wasm32 target build command while some pkg select features for wasmer/js omits its transitive deps
|
2022-08-17 08:18:56 +03:00
|
|
|
wasmer = "2.3.0"
|
|
|
|
wasmer-wasi = "2.3.0"
|
2022-04-22 08:52:55 +03:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
harness = false
|
2022-08-11 12:52:44 +03:00
|
|
|
name = "invoke"
|