opentitanlib/lib.rs
1// Copyright lowRISC contributors (OpenTitan project).
2// Licensed under the Apache License, Version 2.0, see LICENSE for details.
3// SPDX-License-Identifier: Apache-2.0
4
5// Used for serde_annotate.
6#![feature(min_specialization)]
7
8pub mod app;
9pub mod backend;
10pub mod bootstrap;
11pub mod chip;
12pub mod console;
13pub mod crypto;
14pub mod debug;
15pub mod dif;
16pub mod image;
17pub mod io;
18pub mod otp;
19pub mod ownership;
20pub mod proxy;
21pub mod rescue;
22pub mod spiflash;
23pub mod test_utils;
24pub mod tpm;
25pub mod transport;
26pub mod uart;
27pub mod util;