librashader/librashader-runtime-gl/Cargo.toml
2024-10-06 01:05:35 -04:00

38 lines
1.3 KiB
TOML

[package]
name = "librashader-runtime-gl"
edition = "2021"
license = "MPL-2.0 OR GPL-3.0-only"
version = "0.5.0"
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."
[dependencies]
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" }
spirv-cross2 = { workspace = true, features = ["glsl"] }
glow = { workspace = true}
bytemuck = { version = "1.12.3", features = ["derive"] }
thiserror = "1.0.37"
rayon = { workspace = true }
array-init = "2.1.0"
[features]
stable = ["librashader-reflect/stable"]
[dev-dependencies]
glfw = { workspace = true }
[package.metadata.docs.rs]
features = ["librashader-cache/docsrs"]