Skip to main content

aranya_crypto_ffi/
lib.rs

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