solana_cost_model/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
#![cfg_attr(feature = "frozen-abi", feature(min_specialization))]
#![allow(clippy::arithmetic_side_effects)]

pub mod block_cost_limits;
pub mod cost_model;
pub mod cost_tracker;
pub mod transaction_cost;

#[cfg_attr(feature = "frozen-abi", macro_use)]
#[cfg(feature = "frozen-abi")]
extern crate solana_frozen_abi_macro;