-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (43 loc) 路 1.44 KB
/
Copy pathCargo.toml
File metadata and controls
44 lines (43 loc) 路 1.44 KB
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
39
40
41
42
43
44
[package]
name = "windows-native"
version = "1.0.44"
authors = ["NiiightmareXD"]
edition = "2021"
description = "Windows Native Undocumented API for Rust Language 馃敟"
documentation = "https://docs.rs/windows-native"
readme = "README.md"
repository = "https://github.com/NiiightmareXD/windows-native"
license = "MIT"
keywords = ["native", "windows", "ffi", "win32", "com"]
categories = ["os::windows-apis", "api-bindings", "external-ffi-bindings"]
[dependencies]
windows = { version = "0.58.0", features = [
"Win32_Foundation",
"Win32_System_ApplicationInstallationAndServicing",
"Win32_Devices_DeviceAndDriverInstallation",
"Win32_System_Diagnostics_Debug",
"Win32_System_SystemServices",
"Win32_Security",
"Win32_System_Kernel",
"Win32_System_Memory",
"Win32_System_Ioctl",
"Win32_Storage_FileSystem",
"Win32_UI_WindowsAndMessaging",
"Win32_System_Threading",
"Win32_System_WindowsProgramming",
"Win32_System_Power",
"Win32_System_Performance_HardwareCounterProfiling",
"Win32_System_JobObjects",
"Win32_System_SystemInformation",
"Win32_System_Diagnostics_Etw",
"Win32_System_IO",
"Wdk_Foundation",
"Wdk_System_SystemServices",
"Wdk_Storage_FileSystem",
"Win32_Security_Authentication_Identity",
"Wdk_System_SystemInformation",
"Wdk_System_Threading",
"Wdk_System_Registry",
"Wdk_System_Memory",
"Win32_System_PasswordManagement",
], default-features = false }