lib.rs (469B)
1 #![cfg_attr(not(feature = "std"), no_std)] 2 #![forbid(unsafe_code)] 3 4 extern crate alloc; 5 6 pub mod error; 7 pub mod runtime; 8 pub mod types; 9 10 pub mod prelude { 11 pub use crate::error::RadrootsSimplexAgentRuntimeError; 12 pub use crate::runtime::{ 13 RadrootsSimplexAgentRuntime, RadrootsSimplexAgentRuntimeBuilder, 14 decrypt_short_invitation_link_data, 15 }; 16 pub use crate::types::{RadrootsSimplexAgentCommandOutcome, RadrootsSimplexAgentRuntimeEvent}; 17 }