1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
// Copyright 2020-2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

//! A crate that provides common functionalities shared across multiple crates within the Bee framework, and for
//! applications built on-top.

#![warn(missing_docs)]

#[cfg(feature = "auth")]
pub mod auth;
pub mod logger;
pub mod ord;
pub mod packable;
pub mod time;