rust_coinselect/lib.rs
1#![doc = include_str!("../README.md")]
2
3/// Collection of coin selection algorithms including Knapsack, Branch and Bound (BNB), First-In First-Out (FIFO), Single-Random-Draw (SRD), and Lowest Larger
4pub mod algorithms;
5/// Wrapper API that runs all coin selection algorithms in parallel and returns the result with lowest waste
6pub mod selectcoin;
7/// Core types and structs used throughout the library including OutputGroup and CoinSelectionOpt
8pub mod types;
9/// Helper functions with tests for fee calculation, weight computation, and waste metrics
10pub mod utils;