-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 780 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 780 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
[package]
name = "queues"
version = "0.1.0"
edition = "2021"
[dependencies]
dioxus = { version = "0.7.2", features = ["router"] }
wgpu-utils = { git = "https://github.com/cryvosh/gpu-utils" }
wgsl-utils = { git = "https://github.com/cryvosh/gpu-utils" }
log = "0.4"
console_log = "1.0"
web-sys = { version = "0.3.69", features = [
"console",
"Element",
"Window",
"Document",
"HtmlCanvasElement",
"Performance",
]}
wasm-bindgen = "0.2"
console_error_panic_hook = "0.1.6"
wasm-bindgen-futures = "0.4.30"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wgpu = "27.0"
bytemuck = { version = "1.14", features = ["derive"] }
[features]
default = []
web = ["dioxus/web", "dioxus/fullstack"]
server = ["dioxus/server", "dioxus/fullstack"]