1
0
Fork 0
wgpu-rs/Cargo.toml

51 lines
1.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"
2022-07-02 15:39:17 +02:00
bytemuck = { version = "1.9.1", features = [ "derive" ] }
2022-06-19 12:42:19 +02:00
cgmath = "0.18"
env_logger = "0.9"
pollster = "0.2"
log = "0.4"
2022-07-02 15:39:17 +02:00
rayon = "1.5.3"
2022-06-19 12:42:19 +02:00
tobj = { version = "3.2", features = ["async"]}
2022-07-02 15:21:22 +02:00
wgpu = { version = "0.13"}
2022-06-19 12:42:19 +02:00
winit = "0.26"
instant = "0.1"
async-std = "1"
2022-07-26 13:47:56 +02:00
profiling = "1.0.6"
tracy-client = { git = "https://github.com/nagisa/rust_tracy_client.git", branch = "main" }
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"
console_log = "0.2"
2022-07-02 15:21:22 +02:00
wgpu = { version = "0.13", 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"
fs_extra = "1.2"
glob = "0.3"