aboutsummaryrefslogtreecommitdiffhomepage
path: root/detours-sys/Cargo.toml
blob: 9ba0a3fe2f53a7bf0e425a74e6bfbbdafb9e1cf7 (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
31
32
33
34
35
36
37
38
39
[package]
name = "detours-sys"
version = "0.1.2"
authors = ["Diana <5275194+DianaNites@users.noreply.github.com>"]
edition = "2018"
links = "detours"
# Package stuff
description = "Rust bindings to Microsoft Detours"
documentation = "https://github.com/microsoft/Detours/wiki/Reference"
homepage = "https://github.com/DianaNites/detours"
repository = "https://github.com/DianaNites/detours"
readme = "README.md"
keywords = [
    "detours",
    "hooking",
    "injection",
]
categories = [
    "external-ffi-bindings",
    "os::windows-apis",
]
license = "MIT OR Apache-2.0"
exclude = [
    "/.vscode/**"
]

[badges]
maintenance = { status = "as-is" }

[dev-dependencies.winapi]
version = "0.3"
features = [
    "synchapi",
    "processthreadsapi",
    "sysinfoapi",
]

[build-dependencies]
cc = "1.0"