forked from Veykril/imgui-dx11-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (39 loc) · 1.12 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
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "imgui-dx11-renderer"
version = "0.8.0"
authors = ["Lukas Wirth <[email protected]>"]
edition = "2018"
description = "DirectX 11 renderer for the imgui crate"
homepage = "https://github.com/Veykril/imgui-dx11-renderer"
repository = "https://github.com/Veykril/imgui-dx11-renderer"
license = "MIT"
readme = "README.md"
categories = ["gui", "rendering"]
[dependencies]
windows = { version = "0.36", features = [
"Win32_Graphics_Direct3D11",
"Win32_Graphics_Direct3D",
"Win32_Graphics_Dxgi",
"Win32_Graphics_Dxgi_Common",
"Win32_Foundation",
] }
imgui = "0.8"
[build-dependencies]
windows = { version = "0.36", features = [
"alloc",
"Win32_Graphics_Direct3D_Fxc",
"Win32_Foundation",
] }
[dev-dependencies]
imgui = { version = "0.8", features = [] }
imgui-winit-support = { version = "0.8", features = ["winit-26"] }
winit = "0.26"
windows = { version = "0.36", features = [
"Win32_Graphics_Direct3D11",
"Win32_Graphics_Direct3D",
"Win32_Graphics_Dxgi",
"Win32_Graphics_Dxgi_Common",
"Win32_Foundation",
] }
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"