13 releases

new 0.1.12 Nov 21, 2024
0.1.10 Jul 28, 2024
0.1.7 Mar 3, 2024
0.1.3 Dec 27, 2023
0.1.1 Nov 8, 2023

#41 in Hardware support

Download history 1573/week @ 2024-07-31 1657/week @ 2024-08-07 1619/week @ 2024-08-14 1514/week @ 2024-08-21 1282/week @ 2024-08-28 1289/week @ 2024-09-04 1541/week @ 2024-09-11 1590/week @ 2024-09-18 1464/week @ 2024-09-25 1159/week @ 2024-10-02 859/week @ 2024-10-09 1439/week @ 2024-10-16 1454/week @ 2024-10-23 1548/week @ 2024-10-30 1629/week @ 2024-11-06 1737/week @ 2024-11-13

6,640 downloads per month
Used in 32 crates (18 directly)

Apache-2.0 OR MIT

305KB
7K SLoC

nusb

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

Documentation

Compared to rusb and libusb

  • Pure Rust, no dependency on libusb or any other C library.
  • Async-first, while not requiring an async runtime like tokio or async-std. Still easily supports blocking with futures_lite::block_on.
  • 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.

Current status

  • Support for Linux, Windows, macOS, and Android
  • Device listing and descriptor parsing
  • Transfers on control, bulk and interrupt endpoints
  • Device connect / disconnect events on all platforms
  • Used by probe-rs, packetry, postcard-rpc and others, but still relatively new. Please test with your device and report issues.

License

MIT or Apache 2.0, at your option

Dependencies

~0.1–10MB
~111K SLoC