14 releases

new 0.1.13 Feb 15, 2025
0.1.12 Nov 21, 2024
0.1.10 Jul 28, 2024
0.1.7 Mar 3, 2024
0.1.1 Nov 8, 2023

#31 in Hardware support

Download history 1407/week @ 2024-10-27 1747/week @ 2024-11-03 1594/week @ 2024-11-10 1847/week @ 2024-11-17 1954/week @ 2024-11-24 1835/week @ 2024-12-01 1966/week @ 2024-12-08 2220/week @ 2024-12-15 890/week @ 2024-12-22 1174/week @ 2024-12-29 2021/week @ 2025-01-05 2507/week @ 2025-01-12 2425/week @ 2025-01-19 3905/week @ 2025-01-26 4325/week @ 2025-02-02 4486/week @ 2025-02-09

15,385 downloads per month
Used in 38 crates (21 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–15MB
~131K SLoC