forked from microsoft/windows-drivers-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (31 loc) · 921 Bytes
/
Cargo.toml
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
[package]
edition.workspace = true
name = "wdk"
version = "0.2.0"
# This crate doesn't actually directly link to any native libraries, but its set to wdk-sys in order to pass metadata to consumers of this crates
links = "wdk-sys"
description = "Safe idiomatic bindings to APIs available in the Windows Development Kit (WDK)"
repository.workspace = true
readme.workspace = true
license.workspace = true
keywords = ["wdk", "windows", "wdf", "wdm", "ffi"]
categories = [
"api-bindings",
"development-tools::build-utils",
"development-tools::ffi",
"os",
]
[build-dependencies]
tracing.workspace = true
tracing-subscriber = { workspace = true, features = ["env-filter"] }
wdk-build.workspace = true
[dependencies]
wdk-sys.workspace = true
[dev-dependencies]
wdk-sys = { workspace = true, features = ["test-stubs"] }
[features]
default = ["alloc"]
alloc = []
nightly = ["wdk-sys/nightly"]
[lints]
workspace = true