lib

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

lib.rs (306B)


      1 #![cfg_attr(not(feature = "std"), no_std)]
      2 #![cfg_attr(coverage_nightly, feature(coverage_attribute))]
      3 #[cfg(not(feature = "std"))]
      4 extern crate alloc;
      5 
      6 #[cfg(feature = "dto-bindgen")]
      7 pub mod dto;
      8 pub mod listing;
      9 pub mod order;
     10 pub mod prelude;
     11 #[cfg(feature = "serde_json")]
     12 pub mod validation_receipt;