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
7mod constants;
8mod consts;
9mod macros;
10mod quote;
11mod types;
12mod utils;
13
14pub use constants::*;
15pub use consts::*;
16pub use quote::*;
17pub use types::*;
18pub use utils::*;