librashader/librashader-runtime/Cargo.toml

33 lines
993 B
TOML
Raw Normal View History

[package]
name = "librashader-runtime"
edition = "2021"
license = "MPL-2.0 OR GPL-3.0-only"
2024-03-08 00:18:30 -05:00
version = "0.2.7"
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]
2024-03-08 00:18:30 -05:00
librashader-common = { path = "../librashader-common", version = "0.2.7" }
librashader-presets = { path = "../librashader-presets", version = "0.2.7" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.7" }
librashader-reflect = { path = "../librashader-reflect", version = "0.2.7" }
2024-02-26 19:04:40 -05:00
bytemuck = { version = "1.12.3", features = ["derive"] }
num-traits = "0.2.15"
2024-02-22 00:41:29 -05:00
array-concat = "0.5.2"
2023-01-15 15:48:56 -05:00
tinymap = "0.4.0"
2023-01-15 15:48:56 -05:00
[dependencies.image]
2024-05-04 00:31:51 -04:00
version = "0.25.1"
2023-01-15 15:48:56 -05:00
features = [
"gif", "jpeg", "png",
"tga", "pnm", "tiff",
"webp", "bmp", "dds",
]
2023-01-15 20:06:59 -05:00
default-features = false