1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![cfg_attr(not(feature = "std"), no_std)]
#![allow(clippy::unused_unit)]

extern crate alloc;

pub mod common;
pub mod modules;
pub mod runtime_api;
pub mod util;

pub use modules::{
    accumulator, anchor, attest, blob, did, master, offchain_signatures, revoke,
    status_list_credential, trust_registry,
};

#[cfg(test)]
mod tests;