2020-05-07 12:17:57 +03:00
|
|
|
[package]
|
2022-09-10 17:05:27 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2020-05-07 12:17:57 +03:00
|
|
|
description = "wasm module for swc"
|
2022-09-10 17:05:27 +03:00
|
|
|
edition = "2021"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "binding_core_wasm"
|
|
|
|
publish = false
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2022-10-26 09:30:34 +03:00
|
|
|
version = "1.3.11"
|
2020-05-07 12:17:57 +03:00
|
|
|
|
|
|
|
[lib]
|
2022-09-10 17:05:27 +03:00
|
|
|
bench = false
|
2020-05-07 12:17:57 +03:00
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
2021-12-12 16:52:58 +03:00
|
|
|
[features]
|
|
|
|
default = ["swc_v1"]
|
2022-09-10 17:05:27 +03:00
|
|
|
swc_v1 = []
|
|
|
|
swc_v2 = []
|
2022-03-16 01:45:40 +03:00
|
|
|
# This feature exists to allow cargo operations
|
2022-08-05 08:11:40 +03:00
|
|
|
plugin = ["swc_core/plugin_transform_host_js"]
|
2021-12-12 16:52:58 +03:00
|
|
|
|
2020-05-07 12:17:57 +03:00
|
|
|
[dependencies]
|
2022-09-30 06:47:00 +03:00
|
|
|
anyhow = "1"
|
2022-10-26 09:30:34 +03:00
|
|
|
swc_core = { version = "0.40.19", features = [
|
2022-08-05 08:11:40 +03:00
|
|
|
"common_perf",
|
2022-08-10 06:10:19 +03:00
|
|
|
"binding_macro_wasm",
|
2022-10-11 14:49:30 +03:00
|
|
|
"ecma_transforms",
|
|
|
|
"ecma_visit",
|
2022-09-10 17:05:27 +03:00
|
|
|
] }
|
2022-09-30 06:47:00 +03:00
|
|
|
tracing = { version = "0.1.36", features = ["max_level_off"] }
|
2022-09-10 17:05:27 +03:00
|
|
|
wasm-bindgen = { version = "0.2.82", features = [
|
2022-08-01 05:32:33 +03:00
|
|
|
"serde-serialize",
|
|
|
|
"enable-interning",
|
2022-09-10 17:05:27 +03:00
|
|
|
] }
|
2022-05-31 06:07:51 +03:00
|
|
|
|
|
|
|
[package.metadata.wasm-pack.profile.release]
|
|
|
|
wasm-opt = false
|