//! Rivets CLI binary.
use Result;
use Cli;
use EnvFilter;
/// Main entry point for the rivets CLI.
///
/// Uses tokio's current_thread runtime for simplicity and lower overhead.
/// This is appropriate for CLI applications with sequential I/O-bound operations.
async