stellar_token_utils/
lib.rs

1#![no_std]
2
3#[cfg(test)]
4extern crate std;
5
6pub mod interface;
7
8#[cfg(test)]
9mod tests;
10
11cfg_if::cfg_if! {
12    if #[cfg(all(feature = "library", not(test)))] {
13        pub use interface::TokenUtilsInterface;
14    } else {
15        mod contract;
16
17        pub use contract::{TokenUtils, TokenUtilsClient};
18    }
19}