casper_execution_engine/
lib.rs

1//! The engine which executes smart contracts on the Casper network.
2
3#![doc(html_root_url = "https://docs.rs/casper-execution-engine/8.1.1")]
4#![doc(
5    html_favicon_url = "https://raw.githubusercontent.com/casper-network/casper-node/blob/dev/images/Casper_Logo_Favicon_48.png",
6    html_logo_url = "https://raw.githubusercontent.com/casper-network/casper-node/blob/dev/images/Casper_Logo_Favicon.png",
7    test(attr(deny(warnings)))
8)]
9#![warn(
10    missing_docs,
11    trivial_casts,
12    trivial_numeric_casts,
13    unused_qualifications
14)]
15#![cfg_attr(docsrs, feature(doc_auto_cfg))]
16
17pub mod engine_state;
18pub mod execution;
19pub mod resolvers;
20pub mod runtime;
21pub mod runtime_context;