librashader/librashader-runtime/Cargo.toml

32 lines
957 B
TOML
Raw Normal View History

[package]
name = "librashader-runtime"
edition = "2021"
license = "MPL-2.0 OR GPL-3.0-only"
2024-02-16 17:53:56 +11:00
version = "0.2.0-rc.3"
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-02-16 17:53:56 +11:00
librashader-common = { path = "../librashader-common", version = "0.2.0-rc.3" }
librashader-presets = { path = "../librashader-presets", version = "0.2.0-rc.3" }
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.0-rc.3" }
librashader-reflect = { path = "../librashader-reflect", version = "0.2.0-rc.3" }
bytemuck = "1.12.3"
num-traits = "0.2.15"
2023-01-16 07:48:56 +11:00
tinymap = "0.4.0"
2023-01-16 07:48:56 +11:00
[dependencies.image]
version = "0.24.5"
features = [
"gif", "jpeg", "png",
"tga", "pnm", "tiff",
"webp", "bmp", "dds",
]
2023-01-16 12:06:59 +11:00
default-features = false