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 quote;
10mod types;
11
12pub use constants::*;
13pub use consts::*;
14pub use quote::*;
15pub use types::*;