-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 853 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "minhook"
version = "0.9.0"
rust-version = "1.85.0"
edition = "2024"
description = "A Rust wrapper for MinHook, a minimalistic x86/x64 API hooking library for Windows."
homepage = "https://github.com/Jakobzs/minhook"
repository = "https://github.com/Jakobzs/minhook"
documentation = "https://jakobzs.github.io/minhook/minhook"
license = "MIT"
readme = "README.md"
keywords = ["minhook", "hooking", "hook", "windows", "detour"]
authors = ["Jakobzs <31919330+Jakobzs@users.noreply.github.com>"]
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-gnu"
targets = [
"x86_64-pc-windows-msvc",
"i686-pc-windows-msvc",
"x86_64-pc-windows-gnu",
"i686-pc-windows-gnu",
]
[dependencies]
tracing = { version = "0.1", features = ["log"] }
[dev-dependencies]
once_cell = "1"
anyhow = "1"
[build-dependencies]
cc = "1"