Skip to content

Commit 9be016b

Browse files
committed
init
0 parents  commit 9be016b

File tree

12 files changed

+1057
-0
lines changed

12 files changed

+1057
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

Cargo.lock

Lines changed: 103 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[package]
2+
name = "ac-esp"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
[lib]
7+
crate-type = ["cdylib"]
8+
9+
[dependencies]
10+
anyhow = "*"
11+
windows = { version = "*", features = [
12+
"Win32_Foundation",
13+
"Win32_Graphics_Gdi",
14+
"Win32_System_LibraryLoader",
15+
"Win32_System_SystemServices",
16+
"Win32_UI_WindowsAndMessaging",
17+
] }
18+
windows-ez-overlay = { git = "https://github.com/jerryshell/windows-ez-overlay.git" }
19+
20+
[profile.release]
21+
lto = true
22+
strip = true
23+
panic = "abort"
24+
codegen-units = 1

0 commit comments

Comments
 (0)