aboutsummaryrefslogtreecommitdiff
path: root/examples/03.urandom/Cargo.toml
blob: 8b45bdf3fa66278f117b381c0d90c69f50b72b83 (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
29
30
31
[package]
name = "rust.drv.examples.urandom"
description = "Windows kerneld driver sample which creates `\\\\.\\urandom` device."
version = "0.1.0"
authors = ["pravic <[email protected]>"]
readme = "../README.md"

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

[lib]
path = "driver.rs"
name = "urandom"
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 = "*" }
collections = { path = "../../../libcollections" }
alloc       = { path = "../../../liballoc" }
alloc_system= { path = "../../src/alloc"}