Skip to main content

agave_votor_messages/
lib.rs

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//! Alpenglow vote message types
11#![cfg_attr(feature = "frozen-abi", feature(min_specialization))]
12#![deny(missing_docs)]
13
14pub mod consensus_message;
15pub mod vote;
16
17#[cfg_attr(feature = "frozen-abi", macro_use)]
18#[cfg(feature = "frozen-abi")]
19extern crate solana_frozen_abi_macro;