soroban-tools 0.1.5

Fast, lightweight functions and macros with lean, targeted functionality for Soroban smart contract development.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
    Date: 2023
    Author: Fred Kyung-jin Rezeau <fred@litemint.com>
    Copyright (c) 2023 Litemint LLC

    MIT License
*/

/// A rudimentary mock storage allowing testing and profiling.
/// outside of Soroban environment.
/// `cargo test --features mock-storage`
#[cfg(feature = "mock-storage")]
mod mock_storage;

#[cfg(feature = "mock-storage")]
pub use mock_storage::*;