lssa/programs/amm/src/lib.rs

19 lines
314 B
Rust
Raw Normal View History

2026-01-23 16:30:54 -05:00
//! The AMM Program implementation.
2026-03-04 18:42:33 +03:00
#![expect(
clippy::arithmetic_side_effects,
clippy::integer_division,
clippy::integer_division_remainder_used,
reason = "TODO: Fix later"
)]
2026-01-27 18:24:03 -05:00
pub use amm_core as core;
2026-01-23 16:30:54 -05:00
pub mod add;
pub mod new_definition;
pub mod remove;
pub mod swap;
#[cfg(test)]
2026-01-23 16:30:54 -05:00
mod tests;