-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
59 lines (56 loc) · 1.47 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
[package]
name = "rogue"
build = "build.rs"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = { version = "1.0.89" }
ash = "0.38.0+1.3.281"
ash-window = "0.13.0"
bitflags = "2.6.0"
bytemuck = { version = "1.16.1", features = ["derive"] }
cfg-if = "1"
cpal = "0.15.3"
downcast = "0.11.0"
egui = { version = "0.29.1", features = ["bytemuck"] }
egui-winit = { version = "0.29.1", default-features = false, features = [] }
epaint = { version = "0.29.1", features = ["bytemuck"] }
env_logger = "0.11.3"
fixedbitset = "0.5.7"
gilrs = "0.11.0"
nalgebra = { version = "0.33.0", features = ["serde-serialize"] }
noise = "0.9.0"
hecs = { version = "0.10.4", features = ["macros"] }
serde = { version = "1.0", features = ["derive"] }
slang = { path = "../slang-rs" }
log = "0.4.21"
rand = "0.8.5"
regex = "1.11.0"
ron = "0.8.1"
parking_lot = "0.12.1"
petgraph = "0.6.5"
pollster = "0.3.0"
raw-window-handle = "0.6.2"
rogue-macros = { path = "./macros" }
winit = "0.30.5"
wgpu = { version = "22.1.0", features = ["webgpu", "vulkan-portability", "spirv"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
rayon = "1.10.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.7"
console_log = "1.0"
wasm-bindgen = "0.2.92"
wasm-bindgen-futures = "0.4.42"
web-sys = { version = "0.3.72", features = [
"Document",
"Window",
"Element",
"FileSystem",
"Performance",
"Request",
"RequestMode",
"Headers",
"AbortSignal",
"Response",
"RequestInit",
]}