moonpool-sim 0.8.0

Simulation engine for the moonpool framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Provider implementations for simulation.
//!
//! This module provides simulation-specific implementations of the provider traits
//! defined in moonpool-core.

mod random;
mod sim_providers;
mod task;
mod time;

pub use random::SimRandomProvider;
pub use sim_providers::SimProviders;
pub use task::SimTaskProvider;
pub use time::SimTimeProvider;