swc/bindings/binding_core_wasm/Cargo.toml
Donny/강동윤 0cd8aeeb5c
feat(bindings): Apply resolver to the output of parse apis (#6118)
**Description:**

This PR makes the `parse*()` API return AST with `resolver` applied to help plugin authors
2022-10-11 11:49:30 +00:00

38 lines
861 B
TOML

[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "wasm module for swc"
edition = "2021"
license = "Apache-2.0"
name = "binding_core_wasm"
publish = false
repository = "https://github.com/swc-project/swc.git"
version = "1.3.6"
[lib]
bench = false
crate-type = ["cdylib"]
[features]
default = ["swc_v1"]
swc_v1 = []
swc_v2 = []
# This feature exists to allow cargo operations
plugin = ["swc_core/plugin_transform_host_js"]
[dependencies]
anyhow = "1"
swc_core = { version = "0.32.2", features = [
"common_perf",
"binding_macro_wasm",
"ecma_transforms",
"ecma_visit",
] }
tracing = { version = "0.1.36", features = ["max_level_off"] }
wasm-bindgen = { version = "0.2.82", features = [
"serde-serialize",
"enable-interning",
] }
[package.metadata.wasm-pack.profile.release]
wasm-opt = false