-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
25 lines (23 loc) · 801 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
[package]
name = "winapi-util"
version = "0.1.9" #:version
authors = ["Andrew Gallant <[email protected]>"]
description = "A dumping ground for high level safe wrappers over windows-sys."
documentation = "https://docs.rs/winapi-util"
homepage = "https://github.com/BurntSushi/winapi-util"
repository = "https://github.com/BurntSushi/winapi-util"
readme = "README.md"
keywords = ["windows", "windows-sys", "util", "win"]
license = "Unlicense OR MIT"
categories = ["os::windows-apis", "external-ffi-bindings"]
edition = "2021"
[target.'cfg(windows)'.dependencies.windows-sys]
version = ">=0.48.0, <=0.59.*"
features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_System_Console",
"Win32_System_SystemInformation",
]
[package.metadata.docs.rs]
targets = ["x86_64-pc-windows-msvc"]