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
28 lines (25 loc) · 641 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (25 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
[package]
name = "echoapp"
version = "0.1.0"
description = "Test app for kmdf echo-2 sample driver"
keywords = ["windows", "kmdf", "driver", "wdk", "sample"]
rust-version = "1.72.1"
license.workspace = true
edition.workspace = true
publish.workspace = true
[dependencies.once_cell]
version = "1.19.0"
[dependencies.uuid]
version = "1.8.0"
features = ["macro-diagnostics"]
[dependencies.windows-sys]
version = "0.59.0"
features = [
"Win32_Devices_DeviceAndDriverInstallation",
"Win32_Storage_FileSystem",
"Win32_Foundation",
"Win32_Security",
"Win32_System_IO",
"Win32_System_WindowsProgramming",
"Win32_System_Threading",
]