iota_stardust_types/
lib.rs

1// Copyright (c) 2026 IOTA Stiftung
2// SPDX-License-Identifier: Apache-2.0
3
4#![cfg_attr(not(feature = "std"), no_std)]
5#![cfg_attr(docsrs, feature(doc_cfg))]
6#![deny(clippy::nursery, rust_2018_idioms, warnings, unreachable_pub)]
7#![allow(
8    clippy::redundant_pub_crate,
9    clippy::missing_const_for_fn,
10    clippy::significant_drop_in_scrutinee,
11    clippy::significant_drop_tightening,
12    clippy::empty_docs
13)]
14
15extern crate alloc;
16
17#[cfg(feature = "std")]
18extern crate std;
19
20pub mod block;