librashader/librashader-runtime-wgpu/Cargo.toml

46 lines
1.6 KiB
TOML
Raw Normal View History

2023-11-30 17:49:22 +11:00
[package]
name = "librashader-runtime-wgpu"
edition = "2021"
2024-07-29 14:44:51 +10:00
version = "0.2.8"
2024-02-07 10:42:32 +11:00
license = "MPL-2.0 OR GPL-3.0-only"
authors = ["Ronny Chan <ronny@ronnychan.ca>"]
repository = "https://github.com/SnowflakePowered/librashader"
readme = "../README.md"
categories = ["emulators", "compilers", "graphics"]
keywords = ["shader", "retroarch", "SPIR-V"]
description = "RetroArch shaders for all."
2023-11-30 17:49:22 +11:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-07-29 14:44:51 +10:00
librashader-common = { path = "../librashader-common", features = ["wgpu"], version = "0.2.8" }
librashader-presets = { path = "../librashader-presets", version = "0.2.8" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.8" }
librashader-reflect = { path = "../librashader-reflect", version = "0.2.8", features = ["wgsl"], default-features = false }
librashader-runtime = { path = "../librashader-runtime" , version = "0.2.8" }
2024-08-01 16:06:28 +10:00
librashader-cache = { path = "../librashader-cache", version = "0.2.8" }
2023-11-30 17:49:22 +11:00
wgpu = { version = "22.0", default-features = false, features = ["wgsl"] }
2024-06-15 07:18:43 +10:00
image = "0.25.1"
2023-11-30 17:49:22 +11:00
thiserror = "1.0.50"
bytemuck = { version = "1.14.0", features = ["derive"] }
array-concat = "0.5.2"
2023-11-30 17:49:22 +11:00
[features]
# workaround for docsrs to not build metal-rs.
wgpu_dx12 = ["wgpu/dx12"]
wgpu_metal = ["wgpu/metal"]
wgpu_webgpu = ["wgpu/webgpu"]
[target.'cfg(not(target_arch="wasm32"))'.dependencies]
rayon = "1.8.1"
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"