-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
67 lines (59 loc) · 1.74 KB
/
Cargo.toml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "polyblade"
version = "0.1.0"
authors = ["Vera Gonzalez <[email protected]>"]
edition = "2021"
license-file = "LICENSE"
description = "Make shapes dance."
repository = "https://github.com/organizedgrime/polyblade"
readme = "README.md"
keywords = ["polyhedra", "graphics", "graphs", "WebGPU"]
categories = [
"graphics",
"mathematics",
"visualization",
"wasm",
"web-programming",
]
[dependencies]
bytemuck = { version = "1.0", features = [
"derive",
"zeroable_maybe_uninit",
"zeroable_atomics",
] }
iced_aw = { version = "0.11.0", default-features = false, features = ["menu"] }
# Enum iteration
strum = { version = "0.26.2" }
strum_macros = { version = "0.26.2" }
# Vector and Matrix math
ultraviolet = { version = "0.9.2", features = ["bytemuck"] }
rand = { version = "0.8.5" }
serde = { version = "^1.0.0", features = ["derive"] }
ron = { version = "0.8" }
#ckmeans = { version = "1.0.6" }
webbrowser = { version = "1.0.2" }
iced_winit = { version = "0.13" }
iced_widget = { version = "0.13", features = ["wgpu"] }
iced_wgpu = { version = "0.13", features = ["webgl"] }
log = "0.4.22"
rustc-hash = "2.0.0"
[dev-dependencies]
test-case = { version = "^3.3.0" }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
iced = { version = "0.13", features = ["debug", "advanced", "svg"] }
tracing-subscriber = { version = "0.3" }
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2", features = ["js"] }
web-sys = { version = "0.3", features = ["Document", "Window", "Element"] }
wasm-bindgen = { version = "0.2" }
iced = { version = "0.13", features = [
"debug",
"advanced",
"svg",
"webgl",
"debug",
] }
console_error_panic_hook = { version = "0.1" }
console_log = { version = "1.0" }
[profile.release]
debug = true