soroban-tools 0.1.5

Fast, lightweight functions and macros with lean, targeted functionality for Soroban smart contract development.
Documentation
#![no_std]
/*
    Date: 2023
    Author: Fred Kyung-jin Rezeau <fred@litemint.com>
    Copyright (c) 2023 Litemint LLC

    MIT License
*/

#[cfg(feature = "state-machine")]
pub mod fsm;

#[cfg(feature = "circuit-breaker")]
pub mod circuit_breaker;

#[cfg(feature = "storage")]
pub mod storage;

#[cfg(any(test, feature = "mock-storage"))]
pub mod test_utils;