changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / src/crates/ui/Cargo.toml

changeset 29: 7e640cebeada
parent: ba323d8c0f93
author: ellis <ellis@rwest.io>
date: Thu, 15 Jun 2023 21:42:39 -0400
permissions: -rw-r--r--
description: containerfile, refactoring
1 [package]
2 name = "ui"
3 version = "0.1.0"
4 edition = "2021"
5 build = "build.rs"
6 [lib]
7 path = "lib.rs"
8 crate-type = ["rlib","cdylib"]
9 [[bin]]
10 name = "demo-ui"
11 path = "main.rs"
12 [build-dependencies]
13 slint-build = "1.0.2"
14 [dependencies]
15 obj = {version = "0.1.0",path = "../obj"}
16 env_logger = "0.10.0"
17 log = "0.4.17"
18 slint = "1.0.2"
19 [target.'cfg(target_arch = "wasm32")'.dependencies]
20 wasm-bindgen = { version = "0.2" }
21 web-sys = { version = "0.3", features=["console"] }
22 console_error_panic_hook = "0.1.5"