blob: 13834775073d9dd8bb6b3940a9adbf55d21cf1e9 (
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
|
[package]
name = "rust.drv.examples.urandom"
description = "Windows kernel driver sample which creates `\\\\.\\urandom` device."
version = "0.1.0"
authors = ["pravic <[email protected]>"]
readme = "../README.md"
build = "../build.rs"
[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"}
|