forked from ruabmbua/hidapi-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (30 loc) · 766 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
33
[package]
name = "hidapi"
version = "1.4.1"
authors = [
"Roland Ruckerbauer <roland.rucky@gmail.com>",
"Osspial <osspial@gmail.com>",
"Artyom Pavlov <newpavlov@gmail.com>",
"mberndt123",
"niklasad1"
]
repository = "https://github.com/ruabmbua/hidapi-rs"
description = "Rust-y wrapper around hidapi"
license = "MIT"
keywords = ["hid", "api", "usb","binding", "wrapper"]
build = "build.rs"
links = "hidapi"
documentation = "https://docs.rs/hidapi"
[features]
default = ["linux-static-libusb", "illumos-static-libusb"]
linux-static-libusb = []
linux-static-hidraw = []
linux-shared-libusb = []
linux-shared-hidraw = []
illumos-static-libusb = []
illumos-shared-libusb = []
[dependencies]
libc = "0.2"
[build-dependencies]
cc = "1.0"
pkg-config = "0.3"