-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
41 lines (38 loc) · 1.03 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
[package]
name = "pfr"
version = "0.1.0"
edition = "2021"
[dependencies]
arrayref = "0.3.7"
clap = { version = "4.3.19", features = ["derive"] }
cpal = "0.15"
enum-map = { version = "2.6.1", features = ["serde"] }
game-loop = { git = "https://github.com/tuzz/game-loop.git", rev = "8cc864ac", features = ["winit"] }
ndarray = "0.15.6"
pixels = "0.13.0"
png = "0.17.9"
serde = { version = "1.0.183", features = ["derive"] }
winit = { version = "0.29.3", features = ["rwh_05"]}
unnamed_entity = { version = "0.1", features = ["map"] }
arrayvec = "0.7.4"
rand = "0.8.5"
futures = "0.3"
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2", features = ["js"] }
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
js-sys = "0.3.64"
web-sys = { version = "0.3.64", features = [
"GpuTextureFormat",
"Window",
"ReadableStream",
"ReadableStreamDefaultReader",
"Storage",
"Element",
"HtmlElement",
"Location"
]}
log = "0.4"
cpal = { version = "0.15", features = ["wasm-bindgen"] }
[workspace]
members = ["run-wasm"]