1#![cfg_attr(
2 not(feature = "agave-unstable-api"),
3 deprecated(
4 since = "3.1.0",
5 note = "This crate has been marked for formal inclusion in the Agave Unstable API. From \
6 v4.0.0 onward, the `agave-unstable-api` crate feature must be specified to \
7 acknowledge use of an interface that may break without warning."
8 )
9)]
10#![allow(clippy::arithmetic_side_effects)]
11
12mod addr_cache;
13
14pub mod broadcast_stage;
15
16pub mod cluster_nodes;
17
18pub mod quic_endpoint;
19
20pub mod retransmit_stage;
21
22pub mod sigverify_shreds;
23
24pub mod xdp;
25
26#[macro_use]
27extern crate log;
28
29#[macro_use]
30extern crate solana_metrics;
31
32#[cfg(test)]
33#[macro_use]
34extern crate assert_matches;