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

//! Cryptographic primitives of the IOTA protocol.

#![deny(clippy::cast_lossless, clippy::checked_conversions)]
#![warn(
    missing_docs,
    clippy::cast_possible_truncation,
    clippy::cast_sign_loss,
    clippy::cast_possible_wrap
)]
pub mod ternary;