librashader/librashader-preprocess/Cargo.toml

29 lines
722 B
TOML
Raw Normal View History

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