2022-11-09 17:11:25 +11:00
|
|
|
[package]
|
|
|
|
name = "librashader-runtime-gl"
|
|
|
|
edition = "2021"
|
|
|
|
|
2022-12-01 18:07:21 +11:00
|
|
|
license = "MPL-2.0 OR GPL-3.0-only"
|
2024-02-10 10:30:07 +11:00
|
|
|
version = "0.2.0-beta.9"
|
2022-12-01 18:07:21 +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."
|
2022-11-09 17:11:25 +11:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-10 10:30:07 +11:00
|
|
|
librashader-common = { path = "../librashader-common", features = ["opengl"], version = "0.2.0-beta.9" }
|
|
|
|
librashader-presets = { path = "../librashader-presets", version = "0.2.0-beta.9" }
|
|
|
|
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.0-beta.9" }
|
|
|
|
librashader-reflect = { path = "../librashader-reflect", version = "0.2.0-beta.9" }
|
|
|
|
librashader-runtime = { path = "../librashader-runtime" , version = "0.2.0-beta.9" }
|
|
|
|
librashader-cache = { path = "../librashader-cache", version = "0.2.0-beta.9" }
|
2024-02-12 05:21:50 +11:00
|
|
|
spirv_cross = { package = "librashader-spirv-cross", version = "0.24" }
|
2023-02-13 14:36:50 +11:00
|
|
|
|
2022-11-09 17:11:25 +11:00
|
|
|
rustc-hash = "1.1.0"
|
2022-11-12 13:52:22 +11:00
|
|
|
gl = "0.14.0"
|
2022-11-22 09:44:38 +11:00
|
|
|
bytemuck = "1.12.3"
|
2022-11-22 17:56:39 +11:00
|
|
|
thiserror = "1.0.37"
|
2023-02-14 18:56:06 +11:00
|
|
|
rayon = "1.6.1"
|
2022-11-22 17:56:39 +11:00
|
|
|
|
2024-02-03 18:52:48 +11:00
|
|
|
sptr = "0.3"
|
|
|
|
|
2022-11-22 17:56:39 +11:00
|
|
|
[dev-dependencies]
|
|
|
|
glfw = "0.47.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"]
|