changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / ui/Cargo.toml

changeset 16: af615d1895cb
child: e4c9ec452eb6
author: ellis <ellis@rwest.io>
date: Fri, 26 May 2023 21:59:40 -0400
permissions: -rw-r--r--
description: refactoring, ui stuff (goin with slint for DSL power)
1 [package]
2 name = "ui"
3 version = "0.1.0"
4 edition = "2021"
5 [lib]
6 path = "src/lib.rs"
7 crate-type = ["rlib","cdylib"]
8 [[bin]]
9 name = "demo-ui"
10 path = "src/main.rs"
11 [dependencies]
12 wgpu = "0.16.1"
13 winit = "0.28.6"
14 obj = {version = "0.1.0",path = "../obj"}
15 fig = {version = "0.1.0",path = "../fig"}
16 env_logger = "0.10.0"
17 log = "0.4.17"
18 cfg-if = "1.0.0"
19 [target.'cfg(target_arch = "wasm32")'.dependencies]
20 console_error_panic_hook = "0.1.6"
21 console_log = "0.2.0"
22 wgpu = { version = "0.15", features = ["webgl"]}
23 wasm-bindgen = "0.2"
24 wasm-bindgen-futures = "0.4.30"
25 web-sys = { version = "0.3", features = [
26  "Document",
27  "Window",
28  "Element",
29 ]}