forestiles/Cargo.toml

29 lines
663 B
TOML
Raw Normal View History

2024-08-18 18:02:10 +01:00
[package]
name = "forestiles"
version = "0.1.0"
edition = "2021"
[dependencies]
winit = { version = "0.29", features = ["rwh_05"] }
env_logger = "0.11"
log = "0.4"
2024-08-20 22:12:18 +01:00
wgpu = "22.1"
2024-08-18 18:02:10 +01:00
cfg-if = "1"
pollster = "0.3"
2024-08-20 22:12:18 +01:00
bytemuck = { version = "1.17", features = [ "derive" ] }
2024-08-23 17:04:26 +01:00
rand = { version = "0.8", features = ["small_rng"] }
2024-08-23 09:00:33 +01:00
nalgebra = "0.33"
2024-08-23 17:04:26 +01:00
voronoice = "0.2"
noise = "0.9"
2024-08-18 18:02:10 +01:00
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.6"
console_log = "1.0"
wgpu = { version = "22", features = ["webgl"]}
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
web-sys = { version = "0.3", features = [
"Document",
"Window",
"Element",
]}