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-10-06 14:27:13 +11:00
|
|
|
version = "0.5.0"
|
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-10-06 14:27:13 +11:00
|
|
|
librashader-common = { path = "../librashader-common", features = ["opengl"], version = "0.5.0" }
|
|
|
|
librashader-presets = { path = "../librashader-presets", version = "0.5.0" }
|
|
|
|
librashader-preprocess = { path = "../librashader-preprocess", version = "0.5.0" }
|
|
|
|
librashader-reflect = { path = "../librashader-reflect", version = "0.5.0" }
|
|
|
|
librashader-pack = { path = "../librashader-pack", version = "0.5.0" }
|
|
|
|
librashader-runtime = { path = "../librashader-runtime" , version = "0.5.0" }
|
|
|
|
librashader-cache = { path = "../librashader-cache", version = "0.5.0" }
|
2023-02-13 14:36:50 +11:00
|
|
|
|
2024-09-05 10:49:20 +10:00
|
|
|
spirv-cross2 = { workspace = true, features = ["glsl"] }
|
2024-02-06 10:39:01 +11:00
|
|
|
glow = { workspace = true}
|
2024-02-13 17:26:40 +11:00
|
|
|
bytemuck = { version = "1.12.3", features = ["derive"] }
|
2022-11-22 17:56:39 +11:00
|
|
|
thiserror = "1.0.37"
|
2024-10-01 14:34:36 +10:00
|
|
|
rayon = { workspace = true }
|
2024-09-19 10:12:24 +10:00
|
|
|
array-init = "2.1.0"
|
2022-11-22 17:56:39 +11:00
|
|
|
|
2024-09-15 15:55:14 +10:00
|
|
|
[features]
|
|
|
|
stable = ["librashader-reflect/stable"]
|
|
|
|
|
2022-11-22 17:56:39 +11:00
|
|
|
[dev-dependencies]
|
2024-09-24 14:45:48 +10:00
|
|
|
glfw = { workspace = true }
|
2023-02-16 16:39:36 +11:00
|
|
|
|
2023-02-16 17:09:43 +11:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
features = ["librashader-cache/docsrs"]
|