Skip to content

Commit 71e5b76

Browse files
committed
init
0 parents  commit 71e5b76

File tree

6 files changed

+913
-0
lines changed

6 files changed

+913
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

Cargo.lock

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

Cargo.toml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[package]
2+
name = "windows-ez-overlay"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
[dependencies]
7+
anyhow = "*"
8+
windows = { version = "*", features = [
9+
"Win32_Foundation",
10+
"Win32_Graphics_Gdi",
11+
"Win32_UI_WindowsAndMessaging",
12+
] }
13+
14+
[profile.release]
15+
lto = true
16+
strip = true
17+
panic = "abort"
18+
codegen-units = 1

0 commit comments

Comments
 (0)