35 lines
815 B
TOML
35 lines
815 B
TOML
[package]
|
|
name = "pteropus"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
bytemuck = { version = "1.19.0", features = ["derive"] }
|
|
glam = "0.29.2"
|
|
log = "0.4.22"
|
|
tiff = "0.9.1"
|
|
|
|
[target.'cfg(target_arch = "x86_64")'.dependencies]
|
|
winit = { version = "0.30.3", features = ["rwh_06"] }
|
|
wgpu = "23.0.0"
|
|
env_logger = "0.11.3"
|
|
futures = { version = "0.3.30", features = ["executor"] }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
wgpu = { version = "23.0.0", features = ["webgl"]}
|
|
wasm-bindgen = "0.2.84"
|
|
wasm-bindgen-futures = "0.4.42"
|
|
console_log = "1.0"
|
|
console_error_panic_hook = "0.1.7"
|
|
web-sys = { version = "0.3", features = [
|
|
"Document",
|
|
"Window",
|
|
"Element",
|
|
]}
|
|
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
|
wasm-bindgen-test = "0.3.34" |