2022-10-21 21:04:00 -04:00
|
|
|
[package]
|
2022-11-21 16:13:37 -05:00
|
|
|
name = "librashader-common"
|
2022-10-21 21:04:00 -04:00
|
|
|
edition = "2021"
|
|
|
|
|
2022-12-01 02:07:21 -05:00
|
|
|
license = "MPL-2.0 OR GPL-3.0-only"
|
2022-12-05 00:24:16 -05:00
|
|
|
version = "0.1.0-alpha.3"
|
2022-12-01 02:07:21 -05: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 21:04:00 -04:00
|
|
|
|
2022-11-14 00:14:05 -05:00
|
|
|
[features]
|
2022-11-21 16:53:36 -05:00
|
|
|
default = []
|
2022-11-14 00:14:05 -05:00
|
|
|
opengl = ["gl"]
|
2022-11-30 19:10:04 -05:00
|
|
|
d3d11 = ["windows", "dxgi"]
|
|
|
|
dxgi = ["windows"]
|
2022-11-14 00:14:05 -05:00
|
|
|
|
2022-10-21 21:04:00 -04:00
|
|
|
[dependencies]
|
2022-11-17 00:08:11 -05:00
|
|
|
gl = { version = "0.14.0", optional = true }
|
2022-11-24 01:37:16 -05:00
|
|
|
num-traits = "0.2.15"
|
2022-11-26 15:55:14 -05:00
|
|
|
|
|
|
|
[dependencies.windows]
|
|
|
|
optional = true
|
|
|
|
version = "0.43.0"
|
|
|
|
features = [
|
2022-12-01 02:07:21 -05:00
|
|
|
]
|