Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/woodruffw/usb-ids.rs
- Owner: woodruffw
- License: mit
- Created: 2020-12-27T01:28:30.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-12-09T22:02:04.000Z (28 days ago)
- Last Synced: 2024-12-29T06:06:42.897Z (9 days ago)
- Topics: rust, usb
- Language: Rust
- Homepage: https://crates.io/crates/usb-ids
- Size: 397 KB
- Stars: 23
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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.