1[package]
2
3name = "libusb1-sys"
4version = "0.7.0"
5authors = ["David Cuddeback <[email protected]>",
6            "Ilya Averyanov <[email protected]>"]
7description = "FFI bindings for libusb."
8license = "MIT"
9homepage = "https://github.com/a1ien/rusb"
10repository = "https://github.com/a1ien/rusb.git"
11readme = "README.md"
12keywords = ["usb", "libusb", "hardware", "bindings"]
13edition = "2018"
14links = "usb-1.0" # Required for metadata passing to work
15
16include = [
17    "/exaples",
18    "/libusb/libusb",
19    "/libusb/msvc",
20    "/src/*",
21    "/tests",
22    "build.rs",
23    "Cargo.toml",
24    "LICENSE",
25    "README.md",
26    "CHANGELOG.md",
27    "COPYING",
28    "AUTHORS",
29]
30
31build = "build.rs"
32
33[badges]
34travis-ci = { repository = "a1ien/libusb1-sys" }
35
36[features]
37vendored = []
38
39[dependencies]
40libc = "0.2"
41
42[target.'cfg(target_os = "windows")'.build-dependencies]
43vcpkg = "0.2"
44
45[build-dependencies]
46cc = "1.0"
47pkg-config = "0.3"
48