[package] name = "zng-wgt-inspector" version = "0.2.44" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" readme = "README.md" description = "Part of the zng project." documentation = "https://zng-ui.github.io/doc/zng_wgt_inspector" repository = "https://github.com/zng-ui/zng" categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [features] default = ["debug_default"] # Enables the `"live"` feature in debug builds. debug_default = [] # Compiles the interactive inspector. live = [] # Compiles the debug crash handler. # # Only enables in `not(any(target_arch = "wasm32", target_os = "android", target_os = "ios"))` builds. crash_handler = ["zng-app/crash_handler", "dep:open"] [dependencies] zng-wgt = { path = "../zng-wgt", version = "0.5.6" } zng-app = { path = "../zng-app", version = "0.13.6" } zng-env = { path = "../zng-env", version = "0.3.7" } zng-ext-input = { path = "../zng-ext-input", version = "0.5.30" } zng-ext-font = { path = "../zng-ext-font", version = "0.4.14" } zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.2.41" } zng-ext-image = { path = "../zng-ext-image", version = "0.2.40" } zng-ext-config = { path = "../zng-ext-config", version = "0.3.19", default-features = false } zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.19" } zng-view-api = { path = "../zng-view-api", version = "0.10.4" } zng-wgt-dialog = { path = "../zng-wgt-dialog", version = "0.1.19" } zng-ext-window = { path = "../zng-ext-window", version = "0.3.31" } zng-wgt-window = { path = "../zng-wgt-window", version = "0.6.8" } zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.23" } zng-wgt-toggle = { path = "../zng-wgt-toggle", version = "0.3.33" } zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.40" } zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.40" } zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.4.23" } zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.23" } zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.4.23" } zng-wgt-container = { path = "../zng-wgt-container", version = "0.4.2" } zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.42" } zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.32" } zng-wgt-menu = { path = "../zng-wgt-menu", version = "0.3.33" } zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.30" } zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.40" } zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.3.33" } zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.40" } zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.3.33" } zng-wgt-ansi-text = { path = "../zng-wgt-ansi-text", version = "0.3.33" } zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.30" } zng-layout = { path = "../zng-layout", version = "0.2.30" } zng-var = { path = "../zng-var", version = "0.5.9" } zng-color = { path = "../zng-color", version = "0.3.15" } serde = { version = "1.0", features = ["derive"] } tracing = "0.1" parking_lot = "0.12" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] open = { version = "5.1", features = ["shellexecute-on-windows"], optional = true } [package.metadata.docs.rs] all-features = true