2022-11-07 16:25:11 +11:00
|
|
|
[package]
|
2022-11-27 07:58:26 +11:00
|
|
|
name = "librashader-runtime-d3d11"
|
2022-11-07 16:25:11 +11:00
|
|
|
edition = "2021"
|
|
|
|
|
2022-12-01 18:07:21 +11:00
|
|
|
license = "MPL-2.0 OR GPL-3.0-only"
|
2024-03-04 05:21:29 +11:00
|
|
|
version = "0.2.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-11-07 16:25:11 +11:00
|
|
|
|
|
|
|
[dependencies]
|
2024-03-04 05:21:29 +11:00
|
|
|
librashader-common = { path = "../librashader-common", features = ["d3d11"], version = "0.2.5" }
|
|
|
|
librashader-presets = { path = "../librashader-presets", version = "0.2.5" }
|
|
|
|
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.5" }
|
|
|
|
librashader-reflect = { path = "../librashader-reflect", version = "0.2.5" }
|
|
|
|
librashader-runtime = { path = "../librashader-runtime", version = "0.2.5" }
|
|
|
|
librashader-cache = { path = "../librashader-cache", version = "0.2.5", features = ["d3d"] }
|
2022-11-29 16:23:48 +11:00
|
|
|
|
2023-02-13 14:36:50 +11:00
|
|
|
thiserror = "1.0.37"
|
2022-11-24 17:37:16 +11:00
|
|
|
bytemuck = "1.12.3"
|
2023-02-06 11:48:24 +11:00
|
|
|
rayon = "1.6.1"
|
2023-02-06 16:23:37 +11:00
|
|
|
array-concat = "0.5.2"
|
2022-11-09 17:11:25 +11:00
|
|
|
|
2023-01-21 17:54:06 +11:00
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
2024-02-27 10:49:59 +11:00
|
|
|
workspace = true
|
2023-02-12 19:11:07 +11:00
|
|
|
features = [
|
|
|
|
"Win32_Foundation",
|
|
|
|
"Win32_Graphics_Dxgi_Common",
|
|
|
|
"Win32_Graphics_Direct3D",
|
|
|
|
"Win32_Graphics_Direct3D11",
|
|
|
|
"Win32_Graphics_Direct3D_Fxc",
|
|
|
|
"Win32_System_Threading",
|
|
|
|
"Win32_Security",
|
|
|
|
]
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dev-dependencies.windows]
|
2024-02-27 11:04:40 +11:00
|
|
|
workspace = true
|
2022-11-09 17:11:25 +11:00
|
|
|
features = [
|
|
|
|
"Win32_Foundation",
|
|
|
|
"Win32_Graphics_Dxgi_Common",
|
|
|
|
"Win32_Graphics_Direct3D",
|
|
|
|
"Win32_Graphics_Direct3D11",
|
2022-11-22 17:56:39 +11:00
|
|
|
"Win32_Graphics_Direct3D_Fxc",
|
|
|
|
"Win32_Graphics_Gdi",
|
|
|
|
"Win32_Security",
|
|
|
|
"Win32_System_LibraryLoader",
|
|
|
|
"Win32_System_Threading",
|
|
|
|
"Win32_UI_WindowsAndMessaging",
|
2024-02-27 11:04:40 +11:00
|
|
|
"Win32_UI",
|
2022-11-22 17:56:39 +11:00
|
|
|
]
|
|
|
|
|
2023-02-16 16:39:36 +11:00
|
|
|
[[test]]
|
|
|
|
name = "triangle"
|
|
|
|
|
2022-11-22 17:56:39 +11:00
|
|
|
[dev-dependencies]
|
2022-12-01 09:59:55 +11:00
|
|
|
gfx-maths = "0.2.8"
|
2023-02-16 17:09:43 +11:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
features = ["librashader-cache/docsrs"]
|