2022-10-23 02:36:41 -04:00
|
|
|
[package]
|
|
|
|
name = "librashader-reflect"
|
|
|
|
edition = "2021"
|
|
|
|
|
2022-12-01 02:07:21 -05:00
|
|
|
license = "MPL-2.0 OR GPL-3.0-only"
|
2022-12-05 02:12:18 -05:00
|
|
|
version = "0.1.0-alpha.4"
|
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-10-23 02:36:41 -04:00
|
|
|
|
|
|
|
[dependencies]
|
2022-12-01 17:11:42 -05:00
|
|
|
shaderc = { version = "0.8.0", features = [] }
|
2022-10-23 02:36:41 -04:00
|
|
|
spirv_cross = { version = "0.23.1", features = [ "glsl", "hlsl" ] }
|
2022-11-21 16:13:37 -05:00
|
|
|
|
|
|
|
|
2022-10-23 02:36:41 -04:00
|
|
|
thiserror = "1.0.37"
|
2022-10-25 22:13:39 -04:00
|
|
|
bitflags = "1.3.2"
|
|
|
|
rustc-hash = "1.1.0"
|
2022-11-11 01:44:41 -05:00
|
|
|
|
2022-12-05 02:12:18 -05:00
|
|
|
librashader-common = { path = "../librashader-common", version = "0.1.0-alpha.4" }
|
|
|
|
librashader-preprocess = { path = "../librashader-preprocess", version = "0.1.0-alpha.4" }
|
2022-11-21 16:13:37 -05:00
|
|
|
|
2022-11-21 16:21:50 -05:00
|
|
|
naga = { version = "0.10.0", features = ["glsl-in", "spv-in", "spv-out", "glsl-out", "wgsl-out"], optional = true }
|
|
|
|
rspirv = { version = "0.11.0+1.5.4", optional = true }
|
2022-12-01 02:07:21 -05:00
|
|
|
rspirv-reflect = { git = "https://github.com/Traverse-Research/rspirv-reflect", optional = true, version = "0.7.0" }
|
2022-11-21 16:21:50 -05:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
unstable-rust-pipeline = [ "naga", "rspirv", "rspirv-reflect" ]
|
2022-12-01 17:11:42 -05:00
|
|
|
standalone = ["shaderc/build-from-source"]
|
2022-11-21 16:21:50 -05:00
|
|
|
|
2022-10-23 02:36:41 -04:00
|
|
|
[dev-dependencies]
|