summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorAve2024-04-12 00:44:51 +0000
committerAve2024-04-12 00:44:51 +0000
commit044af0e99d40a449c855d989feb7ad8ff042783f (patch)
tree7feb37ab1d5b6f5fb9bb18fbae15ccd913b08b15 /Cargo.toml
parent6d7c85fb2ce657e8e5a79c3223dd981958176ff8 (diff)
downloadohook-rs-044af0e99d40a449c855d989feb7ad8ff042783f.zip
Remove windows-sys dependency and code cleanupHEADmain
This affects the source code only, output binary hashes remain the same.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml22
1 files changed, 14 insertions, 8 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 5226e18..4f2819f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,21 +1,27 @@
[package]
+edition = "2021"
+rust-version = "1.77.1"
name = "shook"
-version = "0.1.0"
+version = "0.1.1"
description = "A rust implementation of ohook"
-repository = "https://github.com/massgravel/ohook-rs"
+keywords = [
+ "activator",
+ "office",
+ "ohook",
+]
+categories = [
+ "no-std",
+ "no-std::no-alloc",
+]
license = "MIT"
-edition = "2021"
-rust-version = "1.77.1"
+repository = "https://github.com/massgravel/ohook-rs"
[lib]
crate-type = ["cdylib"]
-[dependencies]
-windows-sys = "0.52"
-
[profile.dev]
-lto = true
opt-level = 1
+lto = true
panic = "abort"
[profile.release]