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

49 lines
961 B
TOML
Raw Normal View History

2020-03-06 20:19:12 +00:00
[package]
name = "tutorial9-models"
version = "0.1.0"
2023-10-16 03:38:29 +00:00
authors = ["Ben Hansen <https://github.com/sotrh>"]
2020-03-06 20:19:12 +00:00
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"
2023-01-14 19:43:55 +00:00
bytemuck = { version = "1.12", features = [ "derive" ] }
2022-01-26 02:47:32 +00:00
cfg-if = "1"
2021-04-11 07:38:53 +00:00
cgmath = "0.18"
2023-01-14 19:43:55 +00:00
env_logger = "0.10"
2023-06-10 20:21:33 +00:00
pollster = "0.3"
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"]}
2023-07-29 19:15:38 +00:00
wgpu = "0.17"
2023-06-10 20:21:33 +00:00
winit = "0.28"
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"
2023-06-10 20:21:33 +00:00
console_log = "1.0"
2023-07-29 19:15:38 +00:00
wgpu = { version = "0.17", 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",
2022-03-13 23:42:28 +00:00
"Location",
2022-01-26 02:47:32 +00:00
]}
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"