librashader/librashader-runtime-wgpu/Cargo.toml

33 lines
1.1 KiB
TOML
Raw Normal View History

2023-11-30 17:49:22 +11:00
[package]
name = "librashader-runtime-wgpu"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-12-13 11:02:49 +11:00
librashader-common = { path = "../librashader-common", features = ["wgpu"], version = "0.2.0-beta.2" }
librashader-presets = { path = "../librashader-presets", version = "0.2.0-beta.2" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.0-beta.2" }
2024-02-06 17:45:31 +11:00
librashader-reflect = { path = "../librashader-reflect", version = "0.2.0-beta.2", features = ["wgsl"], default-features = false }
2023-12-13 11:02:49 +11:00
librashader-runtime = { path = "../librashader-runtime" , version = "0.2.0-beta.2" }
2023-11-30 17:49:22 +11:00
2024-01-18 14:35:52 +11:00
wgpu = { version = "0.19.0", features = ["spirv"] }
2023-11-30 17:49:22 +11:00
rustc-hash = "1.1.0"
image = "0.24.7"
thiserror = "1.0.50"
rayon = "1.8.0"
bytemuck = { version = "1.14.0", features = ["derive"] }
array-concat = "0.5.2"
2023-11-30 17:49:22 +11:00
[dev-dependencies]
config = { version = "0.13.4", features = [] }
env_logger = "0.10.1"
2024-01-18 14:35:52 +11:00
raw-window-handle = "0.6.0"
winit = "0.29.10"
2023-11-30 17:49:22 +11:00
pollster = "0.3"
log = "0.4.20"
[[test]]
name = "triangle"