-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
32 lines (29 loc) · 945 Bytes
/
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
[package]
name = "imgui-dx9-renderer"
version = "0.11.0"
authors = ["Lukas Wirth <[email protected]>"]
edition = "2021"
description = "DirectX 9 renderer for the imgui crate"
homepage = "https://github.com/Veykril/imgui-dx9-renderer"
repository = "https://github.com/Veykril/imgui-dx9-renderer"
license = "MIT"
readme = "README.md"
categories = ["gui", "rendering"]
[dependencies]
imgui = "0.11.0"
windows = { version = "0.48.0", features = [
"Win32_Foundation",
"Foundation_Numerics",
"Win32_Graphics_Direct3D",
"Win32_Graphics_Direct3D9",
"Win32_Graphics_Dxgi",
"Win32_System_SystemServices",
] }
[dev-dependencies]
imgui = "0.11.0"
imgui-winit-support = "0.11.0"
raw-window-handle = "0.5.2"
windows = { version = "0.48.0", features = ["Win32_Graphics_Gdi"] }
winit = "0.27.5" # Would update to 0.28.3; but imgui-winit-support still uses 0.27.5
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"