1
0
Fork 0
wgpu-rs/Cargo.toml

51 lines
1 KiB
TOML
Raw Normal View History

2022-06-19 12:42:19 +02:00
[package]
name = "tuto1"
version = "0.1.0"
authors = ["Florian RICHER <florian.richer@unova.fr>"]
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
2022-07-25 14:00:36 +02:00
render = { path = "crates/render" }
2022-06-19 12:42:19 +02:00
cfg-if = "1"
anyhow = "1.0"
2023-04-13 14:09:57 +02:00
bytemuck = { version = "1.13", features = [ "derive" ] }
2022-06-19 12:42:19 +02:00
cgmath = "0.18"
2023-01-13 21:56:54 +01:00
env_logger = "0.10"
2023-04-13 14:09:57 +02:00
pollster = "0.3.0"
2022-06-19 12:42:19 +02:00
log = "0.4"
2023-04-13 14:09:57 +02:00
rayon = "1.7"
2022-06-19 12:42:19 +02:00
tobj = { version = "3.2", features = ["async"]}
2023-04-13 14:09:57 +02:00
wgpu = { version = "0.15" }
winit = "0.28"
2022-06-19 12:42:19 +02:00
instant = "0.1"
2023-04-13 14:09:57 +02:00
async-std = "1.12"
2023-01-13 21:56:54 +01:00
profiling = "1.0"
tracy-client = "0.15"
2022-06-19 12:42:19 +02:00
[dependencies.image]
version = "0.24"
default-features = false
features = ["png", "jpeg"]
[target.'cfg(target_arch = "wasm32")'.dependencies]
reqwest = { version = "0.11" }
console_error_panic_hook = "0.1"
2023-04-13 14:09:57 +02:00
console_log = "1.0.0"
wgpu = { version = "0.15", features = ["webgl"]}
2022-06-19 12:42:19 +02:00
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
web-sys = { version = "0.3", features = [
"Document",
"Window",
"Element",
"Location",
]}
[build-dependencies]
anyhow = "1.0"
2023-04-13 14:09:57 +02:00
fs_extra = "1.3"
2022-06-19 12:42:19 +02:00
glob = "0.3"