2022-11-09 01:11:25 -05:00
|
|
|
[package]
|
|
|
|
name = "librashader-runtime-gl"
|
|
|
|
edition = "2021"
|
|
|
|
|
2022-12-01 02:07:21 -05:00
|
|
|
license = "MPL-2.0 OR GPL-3.0-only"
|
2024-08-03 00:13:40 -04:00
|
|
|
version = "0.3.0"
|
2022-12-01 02:07:21 -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."
|
2022-11-09 01:11:25 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2024-08-03 00:13:40 -04:00
|
|
|
librashader-common = { path = "../librashader-common", features = ["opengl"], version = "0.3.0" }
|
|
|
|
librashader-presets = { path = "../librashader-presets", version = "0.3.0" }
|
|
|
|
librashader-preprocess = { path = "../librashader-preprocess", version = "0.3.0" }
|
|
|
|
librashader-reflect = { path = "../librashader-reflect", version = "0.3.0" }
|
|
|
|
librashader-runtime = { path = "../librashader-runtime" , version = "0.3.0" }
|
|
|
|
librashader-cache = { path = "../librashader-cache", version = "0.3.0" }
|
2024-02-12 00:12:08 -05:00
|
|
|
spirv_cross = { package = "librashader-spirv-cross", version = "0.25.1" }
|
2023-02-12 22:36:50 -05:00
|
|
|
|
2022-11-11 21:52:22 -05:00
|
|
|
gl = "0.14.0"
|
2024-02-13 01:26:40 -05:00
|
|
|
bytemuck = { version = "1.12.3", features = ["derive"] }
|
2022-11-22 01:56:39 -05:00
|
|
|
thiserror = "1.0.37"
|
2023-02-14 02:56:06 -05:00
|
|
|
rayon = "1.6.1"
|
2022-11-22 01:56:39 -05:00
|
|
|
|
2024-02-03 02:52:48 -05:00
|
|
|
sptr = "0.3"
|
|
|
|
|
2022-11-22 01:56:39 -05:00
|
|
|
[dev-dependencies]
|
|
|
|
glfw = "0.47.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"]
|