fusionamm_core/
lib.rs

1//
2// Copyright (c) Cryptic Dot
3//
4// Modification based on Orca Whirlpools (https://github.com/orca-so/whirlpools),
5// originally licensed under the Apache License, Version 2.0, prior to February 26, 2025.
6//
7// Modifications licensed under FusionAMM SDK Source-Available License v1.0
8// See the LICENSE file in the project root for license information.
9//
10
11// FIXME: disable std for non-test builds to decrease wasm binary size.
12// There is currently something in tsify that prevents this:
13// https://github.com/madonoharu/tsify/issues/56
14// #![cfg_attr(not(test), no_std)]
15#![allow(clippy::useless_conversion)]
16
17mod constants;
18mod math;
19mod quote;
20mod types;
21
22pub use constants::*;
23pub use math::*;
24pub use quote::*;
25pub use types::*;