32 lines
993 B
TOML
32 lines
993 B
TOML
[package]
|
|
name = "librashader-runtime"
|
|
edition = "2021"
|
|
|
|
license = "MPL-2.0 OR GPL-3.0-only"
|
|
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."
|
|
|
|
[dependencies]
|
|
librashader-common = { path = "../librashader-common", 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" }
|
|
bytemuck = { version = "1.12.3", features = ["derive"] }
|
|
num-traits = "0.2.15"
|
|
array-concat = "0.5.2"
|
|
arc-swap = "1.7.1"
|
|
|
|
[dependencies.image]
|
|
version = "0.25.2"
|
|
features = [
|
|
"gif", "jpeg", "png",
|
|
"tga", "pnm", "tiff",
|
|
"webp", "bmp", "dds",
|
|
]
|
|
default-features = false
|