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

//! Cryptographic primitives of the IOTA protocol.

#![allow(deprecated)] // This is ok, because we are going to deprecate everything here anyways.
#![deny(clippy::cast_lossless, clippy::checked_conversions)]
#![warn(
    missing_docs,
    clippy::cast_possible_truncation,
    clippy::cast_sign_loss,
    clippy::cast_possible_wrap
)]
#![deprecated(
    note = "`bee-crypto` will not be supported in future versions. You can use functions from `iota-crypto` instead."
)]
pub mod ternary;