2022-11-07 00:25:11 -05:00
|
|
|
[package]
|
2022-11-26 15:58:26 -05:00
|
|
|
name = "librashader-runtime-d3d11"
|
2022-11-07 00:25:11 -05:00
|
|
|
edition = "2021"
|
|
|
|
|
2022-12-01 02:07:21 -05:00
|
|
|
license = "MPL-2.0 OR GPL-3.0-only"
|
2023-11-30 02:11:33 -05:00
|
|
|
version = "0.2.0-beta.2"
|
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-11-07 00:25:11 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2023-11-30 02:11:33 -05:00
|
|
|
librashader-common = { path = "../librashader-common", features = ["d3d11"], version = "0.2.0-beta.2" }
|
|
|
|
librashader-presets = { path = "../librashader-presets", version = "0.2.0-beta.2" }
|
|
|
|
librashader-preprocess = { path = "../librashader-preprocess", version = "0.2.0-beta.2" }
|
|
|
|
librashader-reflect = { path = "../librashader-reflect", version = "0.2.0-beta.2", features = ["standalone"] }
|
|
|
|
librashader-runtime = { path = "../librashader-runtime", version = "0.2.0-beta.2" }
|
2023-01-21 02:33:09 -05:00
|
|
|
spirv_cross = { package = "librashader-spirv-cross", version = "0.23" }
|
2023-11-30 02:11:33 -05:00
|
|
|
librashader-cache = { path = "../librashader-cache", version = "0.2.0-beta.2", features = ["d3d"] }
|
2022-11-29 00:23:48 -05:00
|
|
|
|
2023-02-12 22:36:50 -05:00
|
|
|
thiserror = "1.0.37"
|
2022-11-09 01:11:25 -05:00
|
|
|
rustc-hash = "1.1.0"
|
2022-11-24 01:37:16 -05:00
|
|
|
bytemuck = "1.12.3"
|
2023-02-05 19:48:24 -05:00
|
|
|
rayon = "1.6.1"
|
2023-02-06 00:23:37 -05:00
|
|
|
array-concat = "0.5.2"
|
2022-11-09 01:11:25 -05:00
|
|
|
|
2023-01-21 01:54:06 -05:00
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
2023-04-23 01:13:31 -04:00
|
|
|
version = "0.48.0"
|
2023-02-12 03:11:07 -05: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]
|
2023-04-23 01:13:31 -04:00
|
|
|
version = "0.48.0"
|
2022-11-09 01:11:25 -05:00
|
|
|
features = [
|
|
|
|
"Win32_Foundation",
|
|
|
|
"Win32_Graphics_Dxgi_Common",
|
|
|
|
"Win32_Graphics_Direct3D",
|
|
|
|
"Win32_Graphics_Direct3D11",
|
2022-11-22 01:56:39 -05:00
|
|
|
"Win32_Graphics_Direct3D_Fxc",
|
|
|
|
"Win32_Graphics_Gdi",
|
|
|
|
"Win32_Security",
|
|
|
|
"Win32_System_LibraryLoader",
|
|
|
|
"Win32_System_Threading",
|
|
|
|
"Win32_UI_WindowsAndMessaging",
|
|
|
|
]
|
|
|
|
|
2023-02-16 00:39:36 -05:00
|
|
|
[[test]]
|
|
|
|
name = "triangle"
|
|
|
|
|
2022-11-22 01:56:39 -05:00
|
|
|
[dev-dependencies]
|
2022-11-30 17:59:55 -05:00
|
|
|
gfx-maths = "0.2.8"
|
2023-02-16 01:09:43 -05:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
features = ["librashader-cache/docsrs"]
|