blob: a6ffd6f4cd432e8fd0fe2ec96848f13c2ba26cfa (
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
32
33
34
35
36
37
38
|
[package]
name = "windows-kernel-rs"
version = "0.1.0"
edition = "2021"
license = "MIT"
[[example]]
name = "creating_devices"
crate-type = ["cdylib"]
path = "examples/creating_devices/src/lib.rs"
[[example]]
name = "io_controls"
crate-type = ["cdylib"]
path = "examples/io_controls/src/lib.rs"
[[example]]
name = "reading_and_writing"
crate-type = ["cdylib"]
path = "examples/reading_and_writing/src/lib.rs"
[[example]]
name = "safe_framework"
crate-type = ["cdylib"]
path = "examples/safe_framework/src/lib.rs"
[features]
default = ["alloc"]
alloc = []
system = []
[dependencies]
bitflags = "1.3"
cty = "0.2"
lazy_static = { version = "1.4", features = ["spin_no_std"] }
widestring = { version = "0.4", default-features = false, features = ["alloc"]}
windows-kernel-sys = { path = "../windows-kernel-sys" }
x86_64 = "0.14.7"
|