bee_common/
lib.rs

1// Copyright 2020-2021 IOTA Stiftung
2// SPDX-License-Identifier: Apache-2.0
3
4//! A crate that provides common functionalities shared across multiple crates within the Bee framework, and for
5//! applications built on-top.
6
7#![warn(missing_docs)]
8
9#[cfg(feature = "auth")]
10pub mod auth;
11pub mod logger;
12pub mod ord;
13pub mod packable;
14pub mod time;