cargo-mate 1.8.0

Rust development companion that enhances cargo with intelligent workflows, state management, performance optimization, and comprehensive project monitoring.
Documentation
1
2
3
4
5
use anyhow::Result;
use crate::sweeping::{SweepCommands, run_sweep};
pub fn handle_sweep(action: SweepCommands) -> Result<()> {
    run_sweep(action, false)
}