Skip to main content

aranya_perspective_ffi/
lib.rs

1//! The `perspective` 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 ffi;
8mod tests;
9
10pub use ffi::*;