blob: 5226e182bd76da38b86de3e78361b68ec6b470d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
[package]
name = "shook"
version = "0.1.0"
description = "A rust implementation of ohook"
repository = "https://github.com/massgravel/ohook-rs"
license = "MIT"
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
|