learn-wgpu/code/beginner/tutorial9-models/Cargo.toml

48 lines
945 B
TOML
Raw Normal View History

2020-03-06 20:19:12 +00:00
[package]
name = "tutorial9-models"
version = "0.1.0"
authors = ["Ben Hansen <bhbenjaminhansen@gmail.com>"]
edition = "2018"
2022-01-26 02:47:32 +00:00
[lib]
crate-type = ["cdylib", "rlib"]
2020-03-06 20:19:12 +00:00
[dependencies]
2020-09-11 04:45:32 +00:00
anyhow = "1.0"
bytemuck = { version = "1.4", features = [ "derive" ] }
2022-01-26 02:47:32 +00:00
cfg-if = "1"
2021-04-11 07:38:53 +00:00
cgmath = "0.18"
env_logger = "0.9"
2021-07-14 12:26:05 +00:00
pollster = "0.2"
2020-09-11 04:45:32 +00:00
log = "0.4"
2022-02-13 20:31:00 +00:00
tobj = { version = "3.2", features = ["async"]}
2021-12-27 19:09:25 +00:00
wgpu = "0.12"
winit = "0.26"
2020-09-11 04:45:32 +00:00
2022-02-14 03:19:55 +00:00
[dependencies.image]
version = "0.24"
default-features = false
features = ["png", "jpeg"]
2022-01-26 02:47:32 +00:00
[target.'cfg(target_arch = "wasm32")'.dependencies]
2022-02-13 20:31:00 +00:00
reqwest = { version = "0.11" }
console_error_panic_hook = "0.1"
console_log = "0.2"
2022-01-26 02:47:32 +00:00
wgpu = { version = "0.12", features = ["webgl"]}
2022-02-13 20:31:00 +00:00
wasm-bindgen = "0.2"
2022-02-14 03:19:55 +00:00
wasm-bindgen-futures = "0.4"
2022-02-13 20:31:00 +00:00
web-sys = { version = "0.3", features = [
2022-01-26 02:47:32 +00:00
"Document",
"Window",
"Element",
]}
2020-09-11 04:45:32 +00:00
[build-dependencies]
anyhow = "1.0"
fs_extra = "1.2"
glob = "0.3"
2020-03-06 20:19:12 +00:00
[[bin]]
name = "tutorial9-models"
path = "src/main.rs"