defituna-core 3.6.2

DefiTuna core library
Documentation
// FIXME: disable std for non-test builds to decrease wasm binary size.
// There is currently something in tsify that prevents this:
// https://github.com/madonoharu/tsify/issues/56
// #![cfg_attr(not(test), no_std)]
#![allow(clippy::useless_conversion)]
#![allow(dead_code)]

mod constants;
mod consts;
mod macros;
mod math;
mod quote;
mod types;
mod utils;

pub use constants::*;
pub use consts::*;
pub use math::*;
pub use quote::*;
pub use types::*;
pub use utils::*;