tock_tbf/
lib.rs

1// Licensed under the Apache License, Version 2.0 or the MIT License.
2// SPDX-License-Identifier: Apache-2.0 OR MIT
3// Copyright Tock Contributors 2022.
4
5//! Tock Binary Format (TBF) header parsing library.
6
7// Parsing the headers does not require any unsafe operations.
8#![forbid(unsafe_code)]
9#![no_std]
10
11pub mod parse;
12#[allow(dead_code)] // Some fields not read on device, but read when creating headers
13pub mod types;