Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/woodruffw/usb-ids.rs

Cross-platform Rust wrappers for the USB ID Repository
https://github.com/woodruffw/usb-ids.rs

rust usb

Last synced: 7 days ago
JSON representation

Cross-platform Rust wrappers for the USB ID Repository

Awesome Lists containing this project

README

        

usb-ids
=======

[![CI](https://github.com/woodruffw/usb-ids.rs/actions/workflows/ci.yml/badge.svg)](https://github.com/woodruffw/usb-ids.rs/actions/workflows/ci.yml)
[![Crates.io](https://img.shields.io/crates/v/usb-ids)](https://crates.io/crates/usb-ids)

Cross-platform Rust wrappers for the [USB ID Repository](http://www.linux-usb.org/usb-ids.html).

This library bundles the USB ID database, allowing platforms other than Linux to query it
as a source of canonical USB metadata.

## Usage

Iterating over all known vendors:

```rust
use usb_ids::Vendors;

for vendor in Vendors::iter() {
for device in vendor.devices() {
println!("vendor: {}, device: {}", vendor.name(), device.name());
}
}
```

See [the documentation](https://docs.rs/usb-ids) for more details.