-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
32 lines (26 loc) · 891 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
26
27
28
29
30
31
32
[package]
name = "vigem-client"
version = "0.1.4"
authors = ["Casper <[email protected]>"]
edition = "2018"
license = "MIT"
description = "ViGEm client API in pure Rust."
documentation = "https://docs.rs/vigem-client/"
repository = "https://github.com/CasualX/vigem-client"
readme = "readme.md"
categories = ["api-bindings"]
[package.metadata.docs.rs]
targets = ["x86_64-pc-windows-msvc", "i686-pc-windows-msvc"]
[[example]]
name = "notification"
required-features = ["unstable_xtarget_notification"]
[features]
# Include the DS4Target target
unstable_ds4 = []
# Include the XTarget notification API
unstable_xtarget_notification = []
[dependencies]
winapi = { version = "0.3", features = ["std", "handleapi", "setupapi", "fileapi", "winbase", "ioapiset", "synchapi", "errhandlingapi", "xinput", "winerror"] }
[dev-dependencies]
rusty-xinput = "1.2.0"
urandom = "0.1.0"