Skip to content

Commit 61139f2

Browse files
committed
Update README and Cargo.toml for Direct2D support: Change project description and increment version to 0.2.0. Update dependencies for Direct2D and COM initialization in tests.
1 parent da1cf15 commit 61139f2

File tree

5 files changed

+407
-177
lines changed

5 files changed

+407
-177
lines changed

Cargo.lock

+45-80
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
11
[package]
22
name = "windows-ez-overlay"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55

66
[dependencies]
7-
windows = { version = "*", features = [
7+
windows = { git = "https://github.com/microsoft/windows-rs", features = [
8+
"Win32_System_Com",
9+
"Win32_Graphics_Direct2D_Common",
10+
"Win32_Graphics_Direct3D",
11+
"Win32_Graphics_Direct3D11",
12+
"Win32_Graphics_Dxgi_Common",
813
"Win32_Graphics_Gdi",
14+
"Win32_System_LibraryLoader",
15+
"Win32_System_Performance",
16+
"Win32_System_SystemInformation",
17+
"Win32_UI_Animation",
918
"Win32_UI_WindowsAndMessaging",
1019
] }
20+
windows-numerics = { git = "https://github.com/microsoft/windows-rs" }
1121

1222
[profile.release]
1323
lto = true

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# Windows EZ Overlay for Rust 🦀
22

3-
Windows GDI overlay written in Rust.
4-
5-
The goal is to keep it simple and easy to use.
3+
Windows Direct2D overlay
64

75
## How to use
86

0 commit comments

Comments
 (0)