bee_signing/lib.rs
1// Copyright 2020-2021 IOTA Stiftung
2// SPDX-License-Identifier: Apache-2.0
3
4//! Signing scheme primitives.
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
15#[deprecated(note = "`bee-signing` will no longer be supported.")]
16pub mod ternary;