From 68e156acc446a5147da09a6027db31e56886c0c7 Mon Sep 17 00:00:00 2001 From: xanathar Date: Wed, 1 May 2024 20:11:17 +0200 Subject: [PATCH] Mention FreeBSD in the readme --- README.md | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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. //!