forked from gfx-rs/gfx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 1.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "gfx-backend-dx11"
version = "0.1.1"
description = "DirectX-11 API backend for gfx-rs"
homepage = "https://github.com/gfx-rs/gfx"
repository = "https://github.com/gfx-rs/gfx"
keywords = ["graphics", "gamedev"]
license = "MIT OR Apache-2.0"
authors = ["The Gfx-rs Developers"]
readme = "README.md"
documentation = "https://docs.rs/gfx-backend-dx11"
workspace = "../../.."
[features]
default = ["winit"]
[lib]
name = "gfx_backend_dx11"
[dependencies]
gfx-hal = { path = "../../hal", version = "0.1" }
range-alloc = { path = "../../auxil/range-alloc", version = "0.1" }
bitflags = "1"
derivative = "1"
log = { version = "0.4" }
smallvec = "0.6"
spirv_cross = "0.12.1"
parking_lot = "0.7"
winapi = { version = "0.3", features = ["basetsd","d3d11", "d3d11sdklayers", "d3dcommon","d3dcompiler","dxgi1_2","dxgi1_3","dxgi1_4", "dxgi1_5", "dxgiformat","dxgitype","handleapi","minwindef","synchapi","unknwnbase","winbase","windef","winerror","winnt","winuser"] }
winit = { version = "0.19", optional = true }
wio = "0.2"