diff --git a/README.md b/README.md index 85ab35a..24cf8a2 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![CI](https://github.com/xanathar/pci-info/actions/workflows/CI-Rust-Stable.yml/badge.svg) ![Crates.io](https://img.shields.io/crates/v/pci-info) ![docs.rs](https://img.shields.io/docsrs/pci-info) ![Crates.io](https://img.shields.io/crates/d/pci-info) ![Crates.io](https://img.shields.io/crates/l/pci-info) -The `pci-info` crate provides a simple API to enumerate PCI devices across "desktop" operating systems (Linux, Windows, MacOS, with more to be added), or to parse PCI headers from files or memory buffers. +The `pci-info` crate provides a simple API to enumerate PCI devices across "desktop" operating systems (Linux, Windows, MacOS, FreeBSD, with more to be added), or to parse PCI headers from files or memory buffers. It supports parsing of PCI metadata and availability of the various fields (including possibly the entire standard PCI configuration space of a device); the level of support is subject to the capabilities of the enumerator in use. diff --git a/src/lib.rs b/src/lib.rs index 79bfdef..7468654 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,5 @@ #![allow(clippy::needless_doctest_main)] -//! The `pci-info` crate provides a simple API to enumerate PCI devices across "desktop" operating systems (Linux, Windows, MacOS, with more to be added), or to parse PCI headers from files or memory buffers. +//! The `pci-info` crate provides a simple API to enumerate PCI devices across "desktop" operating systems (Linux, Windows, MacOS, FreeBSD, with more to be added), or to parse PCI headers from files or memory buffers. //! //! It supports parsing of PCI metadata and availability of the various fields (including possibly the entire standard PCI configuration space of a device); the level of support is subject to the capabilities of the enumerator in use. //!