Releases: ilya-zlobintsev/pci-id-parser
Releases · ilya-zlobintsev/pci-id-parser
0.6.2
This has been out on crates.io for a while now, but there was no github release.
0.6.2:
- Add support for optional serde feature
0.6.1:
- Error now implements
Display
andError
- Many schema types now implement
Eq
- Fix broken class test
- Bump rust edition to 2021
Full Changelog: v0.6.0...v0.6.2
v0.6.0
- Breaking: the types representing PCI entries are now stored in the
schema
module as opposed to the library root.Database
is still in the root. - Added support for device classes, subclasses and programming interfaces: they're accessible in the
classes
field ofDatabase
. - You can now load the database from a file with a given path, and not just from a set of pre-defined paths using
Database::read_from_file
.