bee-common 0.5.0

Common utilities used across the bee framework
Documentation
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;