2022-12-05 21:01:15 -05:00
|
|
|
[package]
|
|
|
|
name = "librashader-runtime-vk"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
license = "MPL-2.0 OR GPL-3.0-only"
|
2024-10-02 00:28:10 -04:00
|
|
|
version = "0.5.0-rc.1"
|
2022-12-05 21:01:15 -05: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-10-02 00:28:10 -04:00
|
|
|
librashader-common = { path = "../librashader-common", features = ["vulkan"], version = "0.5.0-rc.1" }
|
|
|
|
librashader-presets = { path = "../librashader-presets", version = "0.5.0-rc.1" }
|
|
|
|
librashader-pack = { path = "../librashader-pack", version = "0.5.0-rc.1" }
|
|
|
|
librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.0-rc.1" }
|
|
|
|
librashader-reflect = { path = "../librashader-reflect", version = "0.5.0-rc.1" }
|
|
|
|
librashader-runtime = { path = "../librashader-runtime" , version = "0.5.0-rc.1" }
|
|
|
|
librashader-cache = { path = "../librashader-cache", version = "0.5.0-rc.1" }
|
2023-02-12 22:36:50 -05:00
|
|
|
|
2024-02-11 16:46:43 -05:00
|
|
|
bytemuck = { version = "1.12.3", features = ["derive"] }
|
2022-12-05 21:01:15 -05:00
|
|
|
thiserror = "1.0.37"
|
2024-08-01 01:23:18 -04:00
|
|
|
gpu-allocator = { version = "0.27.0", default-features = false, features = ["vulkan"] }
|
2023-02-09 18:11:34 -05:00
|
|
|
parking_lot = "0.12.1"
|
2024-10-01 00:34:36 -04:00
|
|
|
rayon = { workspace = true }
|
2024-02-11 16:46:43 -05:00
|
|
|
array-concat = "0.5.2"
|
2023-02-05 19:48:24 -05:00
|
|
|
|
2024-08-11 00:42:50 -04:00
|
|
|
ash = { workspace = true, features = ["debug"] }
|
|
|
|
|
2024-09-15 01:55:14 -04:00
|
|
|
[features]
|
|
|
|
stable = ["librashader-reflect/stable"]
|
|
|
|
|
2023-01-13 01:48:04 -05:00
|
|
|
[dev-dependencies]
|
2023-01-13 02:10:07 -05:00
|
|
|
num = "0.4.0"
|
2024-08-01 01:23:18 -04:00
|
|
|
winit = { version = "0.29.10", features = ["rwh_06"] }
|
|
|
|
raw-window-handle = "0.6.2"
|
|
|
|
ash-window = "0.13.0"
|
2023-02-16 00:39:36 -05:00
|
|
|
|
2023-02-16 01:09:43 -05:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
features = ["librashader-cache/docsrs"]
|