summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorAve2024-04-06 23:33:58 +0000
committerAve2024-04-07 00:09:44 +0000
commitf824a732f93cbe12151bcef3a85533af9129b7a7 (patch)
tree984b8da36ffa84c40c537f178e8c3c775d1e9bd4 /Cargo.toml
downloadohook-rs-f824a732f93cbe12151bcef3a85533af9129b7a7.zip
initial commit0.1.0
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml21
1 files changed, 21 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..38248dd
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,21 @@
+[package]
+name = "shook"
+version = "0.1.0"
+edition = "2021"
+rust-version = "1.77.1"
+
+[lib]
+crate-type = ["cdylib"]
+
+[dependencies]
+windows-sys = "0.52"
+
+[profile.dev]
+lto = true
+opt-level = 1
+panic = "abort"
+
+[profile.release]
+lto = true
+panic = "abort"
+strip = true