1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
// Copyright 2020 WeDPR Lab Project Authors. Licensed under Apache-2.0.

//! Library of utilities for FFI (adapting Rust to other programming languages).

#[cfg(not(tarpaulin_include))]
pub mod utils;

#[allow(unused_imports)]
#[macro_use]
extern crate wedpr_ffi_macros;

#[allow(unused_imports)]
#[macro_use]
extern crate wedpr_l_macros;

#[macro_use]
extern crate lazy_static;