aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 65634df4a9f452946ab33dae1d27c28cf0ad90e9 (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 = "winapi-km"
version = "0.1.0"
description = "Windows Kernel Mode support library."

authors = ["pravic <[email protected]>"]
readme = "README.md"
license = "MIT"

# libc = { version = "*", default_features = false }

[lib]
name = "km"
crate-type = ["rlib"]

[dependencies]
core = { path= "../libcore", version="*" }
alloc_system = { path="src/alloc" }
collections = { path = "../libcollections" }

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