7 unstable releases

Uses old Rust 2015

0.3.0 Sep 10, 2016
0.2.2 Nov 5, 2015
0.2.1 Oct 18, 2015
0.1.1 May 24, 2015
0.0.2 Mar 29, 2015

#65 in #usb-device

Download history 4876/week @ 2023-12-11 3283/week @ 2023-12-18 1351/week @ 2023-12-25 2305/week @ 2024-01-01 3078/week @ 2024-01-08 3241/week @ 2024-01-15 3125/week @ 2024-01-22 3602/week @ 2024-01-29 1435/week @ 2024-02-05 677/week @ 2024-02-12 898/week @ 2024-02-19 948/week @ 2024-02-26 860/week @ 2024-03-04 668/week @ 2024-03-11 734/week @ 2024-03-18 770/week @ 2024-03-25

3,125 downloads per month
Used in 23 crates (21 directly)

MIT license

150KB
3K SLoC

Libusb

This crate provides a safe wrapper around the native libusb library. It applies the RAII pattern and Rust lifetimes to ensure safe usage of all libusb functionality. The RAII pattern ensures that all acquired resources are released when they're no longer needed, and Rust lifetimes ensure that resources are released in a proper order.

Dependencies

In order to use the libusb crate, you must have the native libusb library installed where it can be found by pkg-config.

All systems supported by the native libusb library are also supported by the libusb crate. It's been tested on Linux, OS X, and Windows.

Cross-Compiling

The libusb crate can be used when cross-compiling to a foreign target. Details on how to cross-compile libusb are explained in the libusb-sys crate's README.

Usage

Add libusb as a dependency in Cargo.toml:

[dependencies]
libusb = "0.3"

Import the libusb crate. The starting point for nearly all libusb functionality is to create a context object. With a context object, you can list devices, read their descriptors, open them, and communicate with their endpoints:

extern crate libusb;

fn main() {
    let mut context = libusb::Context::new().unwrap();

    for mut device in context.devices().unwrap().iter() {
        let device_desc = device.device_descriptor().unwrap();

        println!("Bus {:03} Device {:03} ID {:04x}:{:04x}",
            device.bus_number(),
            device.address(),
            device_desc.vendor_id(),
            device_desc.product_id());
    }
}

Contributors

License

Copyright © 2015 David Cuddeback

Distributed under the MIT License.

Dependencies

~195KB