-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (41 loc) · 1023 Bytes
/
Cargo.toml
File metadata and controls
47 lines (41 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "LemoGUI"
version = "0.0.1"
authors = ["eaglekindoms <huyongmao35@outlook.com>"]
edition = "2021"
description = "GUI library dependent on wgpu"
license = "MIT"
keywords = ["graphics", "gui"]
repository = "https://github.com/eaglekindoms/LemoGUI"
resolver = "2"
[[example]]
name = "show_button"
path = "example/show_button.rs"
[[example]]
name = "show_shap"
path = "example/show_shape.rs"
[[example]]
name = "test_graph_algo"
path = "example/proto/test_algo.rs"
[dependencies]
wgpu = { version = "0.15.0", features = ["spirv"] }
async-trait = "0.1.51"
winit = "0.27.5"
futures = "0.3.10"
cgmath = "0.18"
log = "0.4.14"
simple_logger = "2.1.0"
rand = "0.8.2"
bytemuck = { version = "1.4", features = ["derive"] }
image = "0.23.12"
ab_glyph = "0.2.11"
raw-window-handle = "0.5.0"
[dependencies.sdl2]
#git = "https://github.com/Rust-SDL2/rust-sdl2"
version = "0.35"
features = ["raw-window-handle", "bundled"]
[features]
wgpu_impl = []
winit_impl = []
sdl2_impl = []
default = ["wgpu_impl", "winit_impl"]