summaryrefslogtreecommitdiff
path: root/crates/windows-kernel-build/examples/hello_world/Cargo.toml
blob: 1baf105330a83da73a70a24a783a7591f7e9dafa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "hello_world"
version = "0.1.0"
authors = ["Fuwn <[email protected]>"]
edition = "2021"
publish = false

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

[build-dependencies]
windows-kernel-build = { path = "../../../windows-kernel-build" }

[dependencies.winapi]
git = "https://github.com/Trantect/winapi-rs.git"
branch = "feature/km"
features = [
  "wdm",
  "ntstatus",
  "ntdef"
]