lib

Core libraries for Radroots
git clone https://radroots.dev/git/lib.git
Log | Files | Refs | README | LICENSE

lib.rs (539B)


      1 #![cfg_attr(not(feature = "std"), no_std)]
      2 #[cfg(not(feature = "std"))]
      3 extern crate alloc;
      4 
      5 pub mod checkpoint;
      6 #[cfg(feature = "dto-bindgen")]
      7 pub mod dto;
      8 pub mod manifest;
      9 pub mod serde_ext;
     10 pub mod types;
     11 
     12 pub use checkpoint::{RadrootsEventsIndexedIndexCheckpoint, RadrootsEventsIndexedShardCheckpoint};
     13 pub use manifest::{
     14     RadrootsEventsIndexedManifest, RadrootsEventsIndexedManifestError,
     15     RadrootsEventsIndexedShardMetadata, validate_manifest,
     16 };
     17 pub use types::{RadrootsEventsIndexedIdRange, RadrootsEventsIndexedShardId};