librashader/librashader-common/Cargo.toml

36 lines
851 B
TOML
Raw Normal View History

2022-10-22 12:04:00 +11:00
[package]
name = "librashader-common"
2022-10-22 12:04:00 +11:00
edition = "2021"
license = "MPL-2.0 OR GPL-3.0-only"
2023-01-28 17:50:33 +11:00
version = "0.1.0-beta.9"
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-22 12:04:00 +11:00
2022-11-14 16:14:05 +11:00
[features]
2022-11-22 08:53:36 +11:00
default = []
2022-11-14 16:14:05 +11:00
opengl = ["gl"]
2022-12-01 11:10:04 +11:00
d3d11 = ["windows", "dxgi"]
dxgi = ["windows"]
2022-12-06 13:01:15 +11:00
vulkan = ["ash"]
2022-11-14 16:14:05 +11:00
2022-10-22 12:04:00 +11:00
[dependencies]
2022-11-17 16:08:11 +11:00
gl = { version = "0.14.0", optional = true }
2022-12-06 13:01:15 +11:00
ash = { version = "0.37.1+1.3.235", optional = true }
num-traits = "0.2.15"
2022-11-27 07:55:14 +11:00
[target.'cfg(windows)'.dependencies.windows]
2022-11-27 07:55:14 +11:00
optional = true
2023-01-17 10:45:02 +11:00
version = "0.44.0"
2022-11-27 07:55:14 +11:00
features = [
2022-12-06 13:01:15 +11:00
"Win32_Foundation",
"Win32_Graphics_Dxgi_Common",
"Win32_Graphics_Direct3D",
"Win32_Graphics_Direct3D11",
]