Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryshell committed Jan 6, 2024
0 parents commit 9be016b
Show file tree
Hide file tree
Showing 12 changed files with 1,057 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
103 changes: 103 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[package]
name = "ac-esp"
version = "0.1.0"
edition = "2021"

[lib]
crate-type = ["cdylib"]

[dependencies]
anyhow = "*"
windows = { version = "*", features = [
"Win32_Foundation",
"Win32_Graphics_Gdi",
"Win32_System_LibraryLoader",
"Win32_System_SystemServices",
"Win32_UI_WindowsAndMessaging",
] }
windows-ez-overlay = { git = "https://github.com/jerryshell/windows-ez-overlay.git" }

[profile.release]
lto = true
strip = true
panic = "abort"
codegen-units = 1
Loading

0 comments on commit 9be016b

Please sign in to comment.