changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / ui/Cargo.toml

changeset 17: e4c9ec452eb6
parent: af615d1895cb
child: a1137af05c8d
author: ellis <ellis@rwest.io>
date: Sat, 27 May 2023 21:07:55 -0400
permissions: -rw-r--r--
description: ui work
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 fig = {version = "0.1.0",path = "../fig"}
17 env_logger = "0.10.0"
18 log = "0.4.17"
19 slint = "1.0.2"
20 [target.'cfg(target_arch = "wasm32")'.dependencies]
21 wasm-bindgen = { version = "0.2" }
22 web-sys = { version = "0.3", features=["console"] }
23 console_error_panic_hook = "0.1.5"