confium 0.2.0

Open-source distributed trust store framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// FFI entry points use raw pointers throughout. The `ffi_return_err!` macro
// wraps a write through `*mut *mut Error` in an `unsafe` block so it can be
// invoked from safe contexts; that block is flagged as redundant when the
// macro happens to be expanded inside another `unsafe` block.
#![allow(unused_unsafe)]

#[macro_use]
pub mod utils;
pub mod error;
pub mod hash;
pub mod lib;
pub mod options;
pub mod plugin;