2022-12-06 13:01:15 +11:00
|
|
|
[package]
|
|
|
|
name = "librashader-runtime-vk"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
license = "MPL-2.0 OR GPL-3.0-only"
|
2024-03-08 16:18:30 +11:00
|
|
|
version = "0.2.7"
|
2022-12-06 13:01:15 +11:00
|
|
|
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."
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-03-08 16:18:30 +11:00
|
|
|
librashader-common = { path = "../librashader-common", features = ["vulkan"], version = "0.2.7" }
|
|
|
|
librashader-presets = { path = "../librashader-presets", version = "0.2.7" }
|
|
|
|
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.7" }
|
|
|
|
librashader-reflect = { path = "../librashader-reflect", version = "0.2.7" }
|
|
|
|
librashader-runtime = { path = "../librashader-runtime" , version = "0.2.7" }
|
|
|
|
librashader-cache = { path = "../librashader-cache", version = "0.2.7" }
|
2023-02-13 14:36:50 +11:00
|
|
|
|
2024-02-12 08:46:43 +11:00
|
|
|
bytemuck = { version = "1.12.3", features = ["derive"] }
|
2022-12-06 13:01:15 +11:00
|
|
|
thiserror = "1.0.37"
|
2024-02-09 18:07:02 +11:00
|
|
|
ash = { version = "0.37", features = ["debug"] }
|
2024-02-16 16:24:23 +11:00
|
|
|
gpu-allocator = { version = "0.25.0", default-features = false, features = ["vulkan"] }
|
2023-02-10 10:11:34 +11:00
|
|
|
parking_lot = "0.12.1"
|
2023-02-06 11:48:24 +11:00
|
|
|
rayon = "1.6.1"
|
2024-02-12 08:46:43 +11:00
|
|
|
array-concat = "0.5.2"
|
2023-02-06 11:48:24 +11:00
|
|
|
|
2023-01-13 17:48:04 +11:00
|
|
|
[dev-dependencies]
|
2023-01-13 18:10:07 +11:00
|
|
|
num = "0.4.0"
|
2023-01-13 17:48:04 +11:00
|
|
|
glfw = "0.49.0"
|
2024-02-10 17:48:41 +11:00
|
|
|
winit = { version = "0.29.10", features = ["rwh_05"] }
|
2022-12-06 13:01:15 +11:00
|
|
|
raw-window-handle = "0.5"
|
|
|
|
ash-window = "0.12.0"
|
2023-02-16 16:39:36 +11:00
|
|
|
|
2023-02-16 17:09:43 +11:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
features = ["librashader-cache/docsrs"]
|