amaru_protocols/lib.rs
1// Copyright 2025 PRAGMA
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#![feature(type_alias_impl_trait)]
16
17pub mod accept;
18pub mod blockfetch;
19pub mod chainsync;
20pub mod connection;
21pub mod deserializers;
22pub mod handshake;
23pub mod keepalive;
24pub mod manager;
25pub mod mempool_effects;
26pub mod mux;
27pub mod network_effects;
28pub mod protocol;
29pub mod protocol_messages;
30pub mod store_effects;
31pub mod tx_submission;
32
33#[cfg(test)]
34mod tests;