raiden_primitives/lib.rs
1#![warn(clippy::missing_docs_in_private_items)]
2
3//! Primitives crate defines various primitive Raiden data types and utils commonly used.
4
5/// Base constants.
6pub mod constants;
7/// Base deserializers.
8pub mod deserializers;
9/// Base hashing functions.
10pub mod hashing;
11/// Base trait implementations.
12pub mod impls;
13/// Base packing functions.
14pub mod packing;
15/// Payment status collection.
16pub mod payments;
17/// Base serializers.
18pub mod serializers;
19/// Private key and signing utils.
20pub mod signing;
21#[cfg(test)]
22mod tests;
23/// Base traits.
24pub mod traits;
25/// Base types some of which are aliases from rust-web3.
26pub mod types;