1//! The `envelope` FFI module. 2 3#![cfg_attr(docsrs, feature(doc_cfg))] 4#![cfg_attr(not(any(test, doctest, feature = "std")), no_std)] 5#![warn(missing_docs)] 6 7mod error; 8mod ffi; 9mod tests; 10 11pub use ffi::*;