forked from raphlinus/win-win
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 793 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 793 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
29
30
31
32
33
[package]
name = "win-win"
version = "0.1.1"
authors = ["Raph Levien <raph.levien@gmail.com>"]
license = "MIT/Apache-2.0"
categories = ["os::windows-apis", "gui"]
readme = "README.md"
description = "A semi-opinionated way to create windows on Windows."
repository = "https://github.com/raphlinus/win-win"
edition = "2018"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
all-features = true
[features]
kb = ["keyboard-types"]
[dependencies.winapi]
version = "0.3.9"
features = ["winuser"]
# use deepsign winapi fork to avoid using different library versions
git = "https://github.com/DeepSignSecurity/winapi-rs.git"
branch = "0.3"
package = "winapi"
[dependencies.keyboard-types]
version = "0.5.0"
optional = true
default-features = false
[dependencies]
wio = "0.2.2"