-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (32 loc) · 1.1 KB
/
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
30
31
32
33
34
35
36
37
38
[package]
name = "phnt"
version = "0.1.2"
license = "MIT"
authors = ["oberrich <[email protected]>"]
repository = "https://github.com/delulusoft/phnt-rs"
homepage = "https://github.com/delulusoft/phnt-rs"
edition = "2024"
build = "src/build.rs"
description = "Rust bindings to the System Informer's (formerly known as Process Hacker) `phnt` native Windows headers"
[features]
regenerate = ["dep:regex", "dep:bindgen", "dep:chrono", "dep:doxygen-bindgen"]
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = ["x86_64-pc-windows-msvc"]
rustdoc-args = ["--cfg", "docsrs"]
rustc-args = ["--cfg", "docsrs"]
[build-dependencies] # optional
regex = { version = "1.11.1", optional = true }
bindgen = { version = "0.71.1", optional = true }
chrono = { version = "0.4.39", optional = true }
doxygen-bindgen = { version = "0.1.2", optional = true }
syn = {version = "2.0.95"}
quote = "1.0.38"
[dependencies.windows-sys]
version = "0.59.0"
features = ["Win32_Foundation"]
[dev-dependencies.windows-sys]
version = "0.59.0"
features = ["Win32_System_Threading"]
[dependencies]
nt-string = "0.1.1"