aboutsummaryrefslogtreecommitdiff
path: root/examples/02.unload/Cargo.toml
blob: 69a1c49ce68d2eb08237b97ae2adb081f02c8794 (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
25
26
27
28
[package]
name = "rust.drv.examples.unload"
description = "Simple Windows kernel driver which can be unloaded."
version = "0.1.0"
authors = ["pravic <[email protected]>"]
readme = "../README.md"

build = "build.rs"
links = "ntoskrnl"

[lib]
path = "driver.rs"
name = "unload"
crate-type = ["dylib"]

test = false
bench = false

[profile.release]
opt-level = 3
debug = true
rpath = false
lto = true
debug-assertions = false

[dependencies]
winapi-km   = { path = "../../../km", version="*" }
core        = { path = "../../../libcore", version = "*" }