librashader/librashader-runtime-gl/Cargo.toml

37 lines
1.2 KiB
TOML
Raw Normal View History

2022-11-09 17:11:25 +11:00
[package]
name = "librashader-runtime-gl"
edition = "2021"
license = "MPL-2.0 OR GPL-3.0-only"
2024-09-21 15:55:42 +10:00
version = "0.4.5"
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-09-21 15:55:42 +10:00
librashader-common = { path = "../librashader-common", features = ["opengl"], version = "0.4.5" }
librashader-presets = { path = "../librashader-presets", version = "0.4.5" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.4.5" }
librashader-reflect = { path = "../librashader-reflect", version = "0.4.5" }
librashader-runtime = { path = "../librashader-runtime" , version = "0.4.5" }
librashader-cache = { path = "../librashader-cache", version = "0.4.5" }
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"
rayon = { workspace = true }
array-init = "2.1.0"
2022-11-22 17:56:39 +11: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 }
[package.metadata.docs.rs]
features = ["librashader-cache/docsrs"]