forked from retep998/winapi-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (39 loc) · 1.02 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "winapi"
version = "0.1.13"
authors = ["Peter Atashian <[email protected]>"]
description = "Types and constants for WinAPI bindings. See README for list of crates providing function bindings."
documentation = "https://retep998.github.io/doc/winapi/"
repository = "https://github.com/retep998/winapi-rs"
readme = "README.md"
keywords = ["Windows", "FFI", "WinSDK"]
license = "MIT"
[dependencies]
libc = "*"
[dev-dependencies.advapi32-sys]
version = "*"
path = "lib/advapi32-sys"
[dev-dependencies.gdi32-sys]
version = "*"
path = "lib/gdi32-sys"
[dev-dependencies.kernel32-sys]
version = "*"
path = "lib/kernel32-sys"
[dev-dependencies.ole32-sys]
version = "*"
path = "lib/ole32-sys"
[dev-dependencies.opengl32-sys]
version = "*"
path = "lib/opengl32-sys"
[dev-dependencies.shell32-sys]
version = "*"
path = "lib/shell32-sys"
[dev-dependencies.user32-sys]
version = "*"
path = "lib/user32-sys"
[dev-dependencies.uuid-sys]
version = "*"
path = "lib/uuid-sys"
[dev-dependencies.winmm-sys]
version = "*"
path = "lib/winmm-sys"