• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //! This module provides functions for handling DICE chains.
2 
3 mod chain;
4 mod entry;
5 
6 pub use chain::{Chain, ChainForm, DegenerateChain};
7 pub use entry::{ComponentVersion, ConfigDesc, DiceMode, Payload};
8 pub(crate) use entry::{ConfigDescBuilder, PayloadBuilder};
9