patina_ffs/lib.rs
1//! Support for Firmware File System as described in the UEFI Platform
2//! Initialization Specification.
3//!
4//! This crate implements support for accesssing and generating Firmware File
5//! System (FFS) structures.
6//!
7//! ## License
8//!
9//! Copyright (C) Microsoft Corporation.
10//!
11//! SPDX-License-Identifier: Apache-2.0
12//!
13#![cfg_attr(not(test), no_std)]
14extern crate alloc;
15
16pub mod err;
17pub mod file;
18pub mod section;
19pub mod volume;
20
21pub use err::FirmwareFileSystemError;