-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (62 loc) · 1.85 KB
/
Cargo.toml
File metadata and controls
68 lines (62 loc) · 1.85 KB
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
68
[package]
name = "polyblade"
version = "0.2.0"
authors = ["Vera Gonzalez <me@vera.lgbt>"]
edition = "2021"
license-file = "LICENSE"
description = "Make shapes dance."
repository = "https://github.com/organizedgrime/polyblade"
readme = "README.md"
keywords = ["WebGPU", "graphics", "graphs", "polyhedra"]
categories = [
"graphics",
"mathematics",
"visualization",
"wasm",
"web-programming",
]
[dependencies]
bytemuck = { version = "1.0", features = [
"derive",
"zeroable_atomics",
"zeroable_maybe_uninit",
] }
graphviz-rust = { version = "0.9.3" }
iced_aw = { version = "0.11.0", default-features = false, features = ["menu"] }
iced_wgpu = { version = "0.13", features = ["webgl"] }
iced_widget = { version = "0.13", features = ["wgpu"] }
iced_winit = { version = "0.13" }
log = { version = "0.4.22" }
rand = { version = "0.8.5" }
ron = { version = "0.8" }
rustc-hash = { version = "2.0.0" }
serde = { version = "^1.0.0", features = ["derive"] }
# Enum iteration
strum = { version = "0.26.2" }
strum_macros = { version = "0.26.2" }
# Vector and Matrix math
ultraviolet = { version = "0.9.2", features = ["bytemuck"] }
# ckmeans = { version = "1.0.6" }
webbrowser = { version = "1.0.2" }
[dev-dependencies]
test-case = { version = "^3.3.0" }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
iced = { version = "0.13", features = ["advanced", "debug", "svg"] }
tracing-subscriber = { version = "0.3" }
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = { version = "0.1" }
console_log = { version = "1.0" }
getrandom = { version = "0.2", features = ["js"] }
iced = { version = "0.13", features = [
"advanced",
"debug",
"svg",
"webgl",
] }
wasm-bindgen = { version = "0.2" }
web-sys = { version = "0.3", features = ["Document", "Element", "Window"] }
[features]
default = []
# graphs = ["dep:layout-rs"]
[profile.release]
debug = true