summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 4f2819f45b4cb961a45fe469a8a082d732f786e3 (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
25
26
27
28
29
30
[package]
edition = "2021"
rust-version = "1.77.1"
name = "shook"
version = "0.1.1"
description = "A rust implementation of ohook"
keywords = [
    "activator",
    "office",
    "ohook",
]
categories = [
    "no-std",
    "no-std::no-alloc",
]
license = "MIT"
repository = "https://github.com/massgravel/ohook-rs"

[lib]
crate-type = ["cdylib"]

[profile.dev]
opt-level = 1
lto = true
panic = "abort"

[profile.release]
lto = true
panic = "abort"
strip = true