changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / rust/ui/alik/Cargo.toml

changeset 698: 96958d3eb5b0
parent: 5540a3e32ba1
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 [package]
2 name = "alik_ui"
3 version.workspace = true
4 authors.workspace = true
5 edition.workspace = true
6 [[bin]]
7 name = "alik_ui"
8 path = "src/main.rs"
9 [dependencies]
10 egui = { version = "0.27.2", features = [
11  "rayon",
12  "log",
13 ] }
14 eframe = { version = "0.27.0", default-features = false, features = [
15  # "accesskit",
16  "default_fonts", # Embed the default egui fonts.
17  "glow", # Use the glow rendering backend. Alternative: "wgpu".
18  "persistence", # Enable restoring app state when restarting the app.
19 ] }
20 log = "0.4"
21 # You only need serde if you want app persistence:
22 serde = { version = "1", features = ["derive"] }
23 rfd = "0.14.1"
24 futures = "0.3.30"
25 
26 # native:
27 # [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
28 
29 # web:
30 [target.'cfg(target_arch = "wasm32")'.dependencies]
31 wasm-bindgen-futures = "0.4"