defituna_core/
lib.rs

1// FIXME: disable std for non-test builds to decrease wasm binary size.
2// There is currently something in tsify that prevents this:
3// https://github.com/madonoharu/tsify/issues/56
4// #![cfg_attr(not(test), no_std)]
5#![allow(clippy::useless_conversion)]
6#![allow(dead_code)]
7
8mod constants;
9mod consts;
10mod macros;
11mod math;
12mod quote;
13mod types;
14mod utils;
15
16pub use constants::*;
17pub use consts::*;
18pub use math::*;
19pub use quote::*;
20pub use types::*;
21pub use utils::*;