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