uniui_gui 0.0.5

Application, DataProcessor and Widget for uniui_* crate family.
Documentation
[package]
name="uniui_gui"
version="0.0.5"
build = "build/script.rs"
edition = "2018"
license = "MIT OR Apache-2.0"
description = "Application, DataProcessor and Widget for uniui_* crate family."
authors = ["MaxV <maxv.rust@pm.me>"]

[dependencies]
log = "0.4"
url = "2"
serde = { version = "1", features = ["derive"] }
rand = { version = "0.7", features = ["wasm-bindgen"] }
uniui_core = { version = "0.0.4", path = "../../uni/uniui_core" }
uniui_gui_macro = { version = "0.0.5", path = "../../uni/uniui_gui_macro" }

[target.'cfg(target_os = "android")'.dependencies]
uni_tmp_jni = { version = "0.17.0", path = "../../tmp/jni-rs"}
android_logger = "0.9.0"
lazy_static = "1"
parking_lot = "0.11"
thiserror = "1"

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2"
js-sys = "0.3"
wasm-logger = "0.1"

[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3"
features = [
		"HtmlAnchorElement",
		"Document",
		"DocumentFragment",
		"Node",
		"NodeList",
		"HtmlElement",
		"Element",
		"Event",
		"console",
		"Window",
		"Performance",
		"HtmlElement",
		"KeyboardEvent",
		"EventTarget",
		"CssStyleDeclaration",
		"Navigator",
		"Location",
		"History",
		"Blob",
		"Url",
]

[build-dependencies]
uniui_build = { version = "0.0.6", path = "../uniui_build" }