summary refs log tree commit diff
path: root/Cargo.toml
blob: 952cf082ff72bb297427b3e2ac5378bf7854bbef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "life"
version = "0.1.0"
edition = "2021"

[package.metadata.wasm-pack.profile.release]
wasm-opt = false

[lib]
crate-type = ["cdylib", "rlib"]

[dependencies]
anyhow = "1.0.70"
getrandom = { version = "0.2.8", features = ["js"] }
pixels = "0.12.0"
rand = { version = "0.8.5", features = ["min_const_gen"] }
wasm-bindgen = "0.2.84"
wasm-bindgen-futures = "0.4.34"
web-sys = { version = "0.3.61", features = ["GpuTextureFormat"] }
winit = "0.28.3"
winit_input_helper = "0.14.1"