1
0
Fork 0
wgpu-rs/Cargo.toml

30 lines
840 B
TOML
Raw Normal View History

2021-08-28 22:15:59 +02:00
[package]
name = "tuto1"
version = "0.1.0"
authors = ["Florian RICHER <florian.richer@unova.fr>"]
2022-06-08 13:00:04 +02:00
edition = "2021"
2021-08-28 22:15:59 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-06-14 22:39:48 +02:00
log = "0.4.17"
image = { version = "0.24.2", features = [ "png", "jpeg" ], default-features = false }
winit = "0.26.1"
cgmath = "0.18"
wgpu = "0.12.0"
bytemuck = { version = "1.9.1", features = [ "derive" ] }
anyhow = "1.0"
2022-06-08 13:00:04 +02:00
simplelog = "0.12.0"
2022-06-14 22:39:48 +02:00
pollster = "0.2"
# [target.'cfg(target_arch = "wasm32")'.dependencies]
# console_error_panic_hook = "0.1.6"
# console_log = "0.2.0"
# wgpu = { version = "0.12", features = ["webgl"]}
# wasm-bindgen = "0.2"
# wasm-bindgen-futures = "0.4"
# web-sys = { version = "0.3", features = [
# "Document",
# "Window",
# "Element",
# ]}