2022-10-21 16:12:17 +11:00
|
|
|
[package]
|
|
|
|
name = "librashader-preprocess"
|
|
|
|
edition = "2021"
|
|
|
|
|
2022-12-01 18:07:21 +11:00
|
|
|
license = "MPL-2.0 OR GPL-3.0-only"
|
2023-02-16 14:58:34 +11:00
|
|
|
version = "0.1.0-rc.5"
|
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-21 16:12:17 +11:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
thiserror = "1.0.37"
|
2022-10-22 12:04:00 +11:00
|
|
|
nom = "7.1.1"
|
2023-02-16 14:58:34 +11:00
|
|
|
librashader-common = { path = "../librashader-common", version = "0.1.0-rc.5" }
|
2023-01-16 06:06:38 +11:00
|
|
|
rustc-hash = "1.1.0"
|
2023-01-29 03:58:59 +11:00
|
|
|
encoding_rs = "0.8.31"
|
2022-10-23 15:59:18 +11:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = [ "line_directives" ]
|
2022-12-01 18:07:21 +11:00
|
|
|
line_directives = []
|
2023-02-08 19:28:27 +11:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-02-16 09:40:24 +11:00
|
|
|
librashader-presets = "0.1.0-rc.3"
|
2023-02-08 19:28:27 +11:00
|
|
|
glob = "0.3.1"
|
2023-02-09 10:42:56 +11:00
|
|
|
rayon = "1.6.1"
|