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#![cfg_attr(feature = "frozen-abi", feature(min_specialization))]
11
12#[macro_use]
13extern crate log;
14
15pub mod commitment;
16pub mod common;
17mod consensus_metrics;
18pub mod consensus_pool;
19mod consensus_pool_service;
20pub mod event;
21mod event_handler;
22pub mod root_utils;
23mod staked_validators_cache;
24mod timer_manager;
25pub mod vote_history;
26pub mod vote_history_storage;
27mod voting_service;
28mod voting_utils;
29#[allow(dead_code)]
30mod votor;
31
32#[cfg_attr(feature = "frozen-abi", macro_use)]
33#[cfg(feature = "frozen-abi")]
34extern crate solana_frozen_abi_macro;