-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
29 lines (25 loc) · 825 Bytes
/
Cargo.toml
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
[package]
name = "ilhook"
description = "A library that provides methods to inline hook binary codes in x86 and x86_64 architecture"
version = "2.1.1"
authors = ["regomne <[email protected]>"]
edition = "2021"
license = "MIT"
readme = "README.md"
repository = "https://github.com/regomne/ilhook-rs"
keywords = ["hook", "assemble", "disassemble"]
categories = ["hardware-support"]
[dependencies]
iced-x86 = { version = "1.20", default-features = false, features = ["std", "decoder", "block_encoder", "instr_info"] }
thiserror = "1.0"
bitflags = "2.0"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
regex = "1"
lazy_static = "1"
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.42.0", features = ["Win32_Foundation", "Win32_System_Memory"] }
[profile.release]
lto = true
codegen-units = 1
opt-level = 3