bee_crypto/
lib.rs

1// Copyright 2020-2021 IOTA Stiftung
2// SPDX-License-Identifier: Apache-2.0
3
4//! Cryptographic primitives of the IOTA protocol.
5
6#![allow(deprecated)] // This is ok, because we are going to deprecate everything here anyways.
7#![deny(clippy::cast_lossless, clippy::checked_conversions)]
8#![warn(
9    missing_docs,
10    clippy::cast_possible_truncation,
11    clippy::cast_sign_loss,
12    clippy::cast_possible_wrap
13)]
14#![deprecated(
15    note = "`bee-crypto` will not be supported in future versions. You can use functions from `iota-crypto` instead."
16)]
17pub mod ternary;