-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (56 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
59 lines (56 loc) · 1.45 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "ntapi"
version = "0.4.1"
authors = ["MSxDOS <melcodos@gmail.com>"]
description = "FFI bindings for Native API"
license = "Apache-2.0 OR MIT"
documentation = "https://docs.rs/ntapi/*/x86_64-pc-windows-msvc/ntapi/"
repository = "https://github.com/MSxDOS/ntapi"
readme = "README.md"
categories = ["external-ffi-bindings", "no-std", "os::windows-apis"]
keywords = ["windows", "ffi", "ntapi", "native", "win32"]
include = [
"src/**/*",
"Cargo.toml",
"build.rs",
"README.md",
"LICENSE-APACHE",
"LICENSE-MIT",
]
edition = "2018"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = [
"aarch64-pc-windows-msvc",
"i686-pc-windows-msvc",
"x86_64-pc-windows-msvc",
]
[dependencies.windows-sys]
version = "0.48.0"
features = [
'Win32_Devices_DeviceAndDriverInstallation',
'Win32_Foundation',
'Win32_Networking_WinSock',
'Win32_Security_Authentication_Identity',
'Win32_Security',
'Win32_Storage_FileSystem',
'Win32_System_Diagnostics_Debug',
'Win32_System_Diagnostics_Etw',
'Win32_System_Ioctl',
'Win32_System_JobObjects',
'Win32_System_Kernel',
'Win32_System_Memory',
'Win32_System_Performance_HardwareCounterProfiling',
'Win32_System_Power',
'Win32_System_SystemInformation',
'Win32_System_SystemServices',
'Win32_System_Threading',
'Win32_System_WindowsProgramming',
'Win32_UI_WindowsAndMessaging',
]
[features]
default = ["user"]
func-types = []
impl-default = []
user = []
kernel = []