blob: 9c380d6e7092abad1dd3d704053b41895428d9cb (
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
|
[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"
[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-kmd = { path = "../../../km", version="*" }
core = { path = "../../../libcore", version = "*" }
|