prns_runtime_embassy/
lib.rs1#![cfg_attr(not(any(feature = "std", test)), no_std)]
2#![deny(unsafe_code)]
3#![deny(rustdoc::broken_intra_doc_links)]
4
5pub use prns_runtime::{
6 crypto, engine, identity, interfaces, persistence, request_endpoints, routing, storage, units,
7 wire,
8};
9
10pub mod manifold;
11pub mod runtime;