forked from microsoft/Windows-rust-driver-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 641 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (29 loc) · 641 Bytes
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
[workspace]
members = [
"general/echo/kmdf/driver/*",
"general/echo/kmdf/exe",
"tools/dv/kmdf/fail_driver_pool_leak",
]
resolver = "2"
[workspace.package]
edition = "2021"
publish = false
repository = "https://github.com/microsoft/windows-rust-driver-samples"
license = "MIT OR Apache-2.0"
[workspace.metadata.wdk.driver-model]
driver-type = "KMDF"
kmdf-version-major = 1
target-kmdf-version-minor = 33
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
lto = true
[workspace.dependencies]
anyhow = "1.0.89"
paste = "1.0.14"
wdk = "0.4.1"
wdk-alloc = "0.4.1"
wdk-build = "0.5.1"
wdk-panic = "0.4.1"
wdk-sys = "0.5.1"