blob: f22c22eba12b6d3b2d5b24f13461d750bee33fdb (
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 = "winapi-kmd"
version = "0.1.0"
description = "Windows Kernel Mode support library."
keywords = ["windows", "ffi", "drivers", "wdk", "ddk", "Four-F"]
authors = ["pravic <[email protected]>"]
repository = "https://github.com/pravic/winapi-kmd-rs"
documentation = "http://pravic.github.io/winapi-kmd-rs"
readme = "README.md"
license = "MIT"
[lib]
name = "km"
crate-type = ["rlib"]
[dependencies]
alloc_system = { path="src/alloc" }
core = { path= "../libcore", version="*" }
collections = { path = "../libcollections" }
[profile.release]
opt-level = 3
debug = true
rpath = false
lto = true
debug-assertions = false
codegen-units = 4
|