solana_vote/lib.rs
1#![cfg_attr(feature = "frozen-abi", feature(min_specialization))]
2#![allow(clippy::arithmetic_side_effects)]
3
4pub mod vote_account;
5pub mod vote_parser;
6pub mod vote_state_view;
7pub mod vote_transaction;
8
9#[cfg_attr(feature = "frozen-abi", macro_use)]
10#[cfg(feature = "frozen-abi")]
11extern crate solana_frozen_abi_macro;
12
13#[macro_use]
14extern crate serde_derive;