nusb

Crates.ionusb
lib.rsnusb
version0.2.0
created_at2023-10-08 21:44:04.812667+00
updated_at2025-07-27 19:52:49.504279+00
descriptionCross-platform low-level access to USB devices in pure Rust
homepage
repositoryhttps://github.com/kevinmehall/nusb
max_upload_size
id997458
size469,083
Kevin Mehall (kevinmehall)

documentation

README

nusb

A new pure-Rust library for cross-platform low-level access to USB devices.

nusb supports Windows, macOS, and Linux, and provides both async and blocking APIs for listing and watching USB devices, reading descriptor details, opening and managing devices and interfaces, and performing transfers on control, bulk, and interrupt endpoints.

Compared to rusb and libusb

  • Pure Rust, no dependency on libusb or any other C library.
  • Async-first, while not requiring an async runtime.
  • No context object. You just open a device. There is a global event loop thread that is started when opening the first device.
  • Thinner layer over OS APIs, with less internal state.

License

MIT or Apache 2.0, at your option

Commit count: 306

cargo fmt