2022-10-18 14:52:16 +11:00
|
|
|
[package]
|
|
|
|
name = "librashader-presets"
|
|
|
|
edition = "2021"
|
|
|
|
|
2022-12-01 18:07:21 +11:00
|
|
|
license = "MPL-2.0 OR GPL-3.0-only"
|
2024-02-20 08:19:05 +11:00
|
|
|
version = "0.2.2"
|
2022-12-01 18:07:21 +11: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-18 14:52:16 +11:00
|
|
|
|
|
|
|
[dependencies]
|
2022-10-20 13:47:43 +11:00
|
|
|
thiserror = "1.0.37"
|
|
|
|
nom = "7.1.1"
|
|
|
|
nom_locate = "4.0.0"
|
2024-02-20 08:19:05 +11:00
|
|
|
librashader-common = { path = "../librashader-common", version = "0.2.2" }
|
2022-11-28 17:16:09 +11:00
|
|
|
num-traits = "0.2"
|
2024-02-09 13:33:17 +11:00
|
|
|
once_cell = "1"
|
|
|
|
# we don't need unicode
|
|
|
|
regex = { version = "1", default-features = false, features = ["perf"] }
|
2024-02-10 09:48:20 +11:00
|
|
|
|
|
|
|
rustversion = "1.0"
|
|
|
|
os_str_bytes = { version = "6", features = ["conversions"] }
|
|
|
|
|
2022-11-28 17:16:09 +11:00
|
|
|
[features]
|
2022-12-01 18:07:21 +11:00
|
|
|
parse_legacy_glsl = []
|
2023-02-08 19:05:55 +11:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-02-08 19:09:03 +11:00
|
|
|
glob = "0.3.1"
|