34 lines
1.1 KiB
TOML
34 lines
1.1 KiB
TOML
[package]
|
|
name = "librashader-reflect"
|
|
edition = "2021"
|
|
|
|
license = "MPL-2.0 OR GPL-3.0-only"
|
|
version = "0.1.0-beta.8"
|
|
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]
|
|
shaderc = { version = "0.8.2", features = [] }
|
|
spirv_cross = { package = "librashader-spirv-cross", version = "0.23", features = [ "glsl", "hlsl" ] }
|
|
|
|
thiserror = "1.0.37"
|
|
bitflags = "1.3.2"
|
|
rustc-hash = "1.1.0"
|
|
|
|
librashader-common = { path = "../librashader-common", version = "0.1.0-beta.8" }
|
|
librashader-preprocess = { path = "../librashader-preprocess", version = "0.1.0-beta.8" }
|
|
librashader-presets = { path = "../librashader-presets", version = "0.1.0-beta.8" }
|
|
|
|
naga = { version = "0.10.0", features = ["glsl-in", "spv-in", "spv-out", "glsl-out", "wgsl-out"], optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
unstable-naga = [ "naga" ]
|
|
standalone = ["shaderc/build-from-source"]
|
|
|
|
[dev-dependencies]
|