42 lines
1017 B
TOML
42 lines
1017 B
TOML
[package]
|
|
name = "pteropus"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[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"
|
|
wgsl-shader-assembler = { git = "https://git.gordon.earth/matthew/wgsl-shader-assembler.git" }
|
|
|
|
[target.'cfg(target_arch = "x86_64")'.dependencies]
|
|
winit = { version = "0.30.3", features = ["rwh_06"] }
|
|
wgpu = "25.0.0"
|
|
env_logger = "0.11.3"
|
|
futures = { version = "0.3.30", features = ["executor"] }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
wgpu = { version = "25.0.0"}
|
|
wasm-bindgen = "0.2.84"
|
|
wasm-bindgen-futures = "0.4.42"
|
|
console_log = "1.0"
|
|
console_error_panic_hook = "0.1.7"
|
|
gloo = { version = "0.11.0", features=["file", "futures"] }
|
|
web-sys = { version = "0.3", features = [
|
|
"Document",
|
|
"Window",
|
|
"Element",
|
|
"File",
|
|
"Performance"
|
|
]}
|
|
|
|
[dev-dependencies]
|
|
proptest = "1.5.0"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
|
wasm-bindgen-test = "0.3.34"
|