summaryrefslogtreecommitdiff
path: root/crates/windows-kernel-sys/Cargo.toml
blob: 4251066faa0f77ca5ac955ec3846eec6d5f68171 (plain) (blame)
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 = "windows-kernel-sys"
version = "0.1.0"
edition = "2021"
license = "MIT"

[[example]]
name = "generate_bindings"
crate-type = ["cdylib"]
path = "examples/generate_bindings/src/lib.rs"

[features]
default = ["intrin", "ntoskrnl"]
intrin = []
ntoskrnl = []
netio = []

[dependencies]
cty = "0.2"

[build-dependencies]
bindgen = "0.59"
cc = "1.0"
windows-kernel-build = { path = "../windows-kernel-build" }