moonpool-sim 0.6.0

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

mod random;
mod sim_providers;
mod time;

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