2021-08-26 17:30:36 -07:00
|
|
|
#![cfg_attr(RUSTC_WITH_SPECIALIZATION, feature(min_specialization))]
|
2022-03-13 08:43:07 -07:00
|
|
|
#![deny(clippy::integer_arithmetic)]
|
|
|
|
#![deny(clippy::indexing_slicing)]
|
2021-08-26 17:30:36 -07:00
|
|
|
|
2021-12-28 05:14:48 -06:00
|
|
|
pub mod accounts_data_meter;
|
2022-01-17 20:48:00 +08:00
|
|
|
pub mod compute_budget;
|
2021-11-04 21:47:32 +01:00
|
|
|
pub mod invoke_context;
|
|
|
|
pub mod log_collector;
|
|
|
|
pub mod native_loader;
|
2021-11-11 14:09:28 -08:00
|
|
|
pub mod neon_evm_program;
|
2021-12-01 08:54:42 +01:00
|
|
|
pub mod pre_account;
|
2021-11-17 19:35:07 +01:00
|
|
|
pub mod stable_log;
|
2022-01-12 11:19:11 +08:00
|
|
|
pub mod sysvar_cache;
|
2021-12-01 08:54:42 +01:00
|
|
|
pub mod timings;
|