Cross-platform Rust wrappers for the PCI ID Repository.
This library bundles the PCI ID database, allowing platforms other than Linux to query it as a source of canonical PCI metadata.
Iterating over all known vendors:
```rust use pci_ids::Vendors;
for vendor in Vendors::iter() { for device in vendor.devices() { println!("vendor: {}, device: {}", vendor.name(), device.name()); } } ```