etf_crypto_primitives/
lib.rs

1//#![cfg_attr(not(feature = "std"), no_std)]
2#![no_std]
3
4#![warn(
5    unused,
6    future_incompatible,
7    nonstandard_style,
8    rust_2018_idioms,
9    rust_2021_compatibility
10)]
11#![allow(clippy::op_ref, clippy::suspicious_op_assign_impl)]
12#![deny(unsafe_code)]
13
14#[macro_use]
15extern crate alloc;
16
17pub mod utils;
18pub mod encryption;
19pub mod ibe;
20pub mod proofs;
21pub mod client;
22
23// #[cfg(test)]
24pub mod testing;