librashader/librashader-runtime-gl/Cargo.toml

31 lines
1 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"
version = "0.1.0-alpha.1"
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]
librashader-common = { path = "../librashader-common", features = ["opengl"], version = "0.1.0-alpha.1" }
librashader-presets = { path = "../librashader-presets", version = "0.1.0-alpha.1" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.1.0-alpha.1" }
2022-12-02 11:16:13 +11:00
librashader-reflect = { path = "../librashader-reflect", version = "0.1.0-alpha.1", features = ["standalone"] }
librashader-runtime = { path = "../librashader-runtime" , version = "0.1.0-alpha.1" }
2022-11-11 18:26:57 +11:00
spirv_cross = "0.23.1"
2022-11-09 17:11:25 +11:00
rustc-hash = "1.1.0"
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"
[dev-dependencies]
glfw = "0.47.0"
2022-11-27 08:47:48 +11:00
[features]
gl4 = []