1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright 2020-2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0
//! Core data types for messages in the tangle.
extern crate alloc;
/// A module that provides types and syntactic validations of addresses.
/// A module that contains constants related to messages.
/// A module that provides types and syntactic validations of inputs.
/// A module that provides types and syntactic validations of milestones.
/// A module that provides types and syntactic validations of outputs.
/// A module that provides types and syntactic validations of parents.
/// A module that provides types and syntactic validations of payloads.
/// A prelude for the `bee-message` crate.
/// A module that provides types and syntactic validations of signatures.
/// A module that provides types and syntactic validations of unlock blocks.
pub use ;