1
2
3
4
5
6
7
8
9
10
11
#[cfg(feature = "docs-only")]
mod ffi_docs_only;
#[cfg(feature = "docs-only")]
pub use ffi_docs_only::*;

#[cfg(not(feature = "docs-only"))]
mod ffi;
#[cfg(not(feature = "docs-only"))]
pub use ffi::*;

mod impls;