microsoft-webui-wasm 0.0.21

WebAssembly bindings for WebUI framework — powers the online playground
Documentation
[package]
name = "microsoft-webui-wasm"
description = "WebAssembly bindings for WebUI framework — powers the online playground"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
readme = "README.md"
keywords = ["webui", "wasm", "webassembly", "ssr", "rendering"]
categories = ["wasm", "web-programming"]

[package.metadata.wasm-pack.profile.release]
wasm-opt = false

[lib]
name = "webui_wasm"
crate-type = ["cdylib", "rlib"]

[features]
default = ["all"]
all = ["handler", "parser"]
handler = ["dep:microsoft-webui-handler"]
parser = ["dep:microsoft-webui-parser", "microsoft-webui-protocol/projection-manifest"]

[dependencies]
microsoft-webui-parser = { path = "../webui-parser", version = "0.0.21", default-features = false, optional = true }
microsoft-webui-handler = { path = "../webui-handler", version = "0.0.21", optional = true }
microsoft-webui-protocol = { path = "../webui-protocol", version = "0.0.21" }
serde_json = { workspace = true }
wasm-bindgen = { workspace = true }
js-sys = { workspace = true }
serde-wasm-bindgen = { workspace = true }
thiserror = { workspace = true }

[lints]
workspace = true