bee_ledger/
lib.rs

1// Copyright 2020-2021 IOTA Stiftung
2// SPDX-License-Identifier: Apache-2.0
3
4//! A crate that contains all types and features required to compute and maintain the ledger state.
5
6#![deny(missing_docs)]
7
8pub mod types;
9#[cfg(feature = "workers")]
10pub mod workers;