librashader/librashader-runtime-d3d11/Cargo.toml

34 lines
943 B
TOML
Raw Normal View History

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
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-11-27 07:55:14 +11:00
"librashader-common" = { path = "../librashader-common", features = ["d3d11"] }
2022-11-07 16:25:11 +11:00
"librashader-presets" = { path = "../librashader-presets" }
"librashader-preprocess" = { path = "../librashader-preprocess" }
"librashader-reflect" = { path = "../librashader-reflect" }
2022-11-09 17:11:25 +11:00
rustc-hash = "1.1.0"
2022-11-22 17:56:39 +11:00
gfx-maths = "0.2.8"
bytemuck = "1.12.3"
2022-11-09 17:11:25 +11:00
[dependencies.windows]
version = "0.43.0"
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_System_WindowsProgramming",
"Win32_UI_WindowsAndMessaging",
]
[dev-dependencies]