//! Ranking strategies for UTxO candidates.
//!
//! A ranker sorts candidates by how well they match a target asset composition.
//! Different strategies trade off precision for simplicity.
use ;
/// Rank candidates by relevance to a target asset composition.
pub type Ranker = VectorRanker;
pub type Ranker = NaiveRanker;