fzf-make 0.69.0

A command line tool that executes commands using fuzzy finder with preview window for make, pnpm, yarn, just, and task.
use crate::usecase::usecase_main::Usecase;
use anyhow::Result;
use futures::{FutureExt, future::BoxFuture};
use std::env;

pub struct Version;

impl Version {
    pub fn new() -> Self {
        Self {}
    }
}

impl Usecase for Version {
    fn command_str(&self) -> Vec<&'static str> {
        vec!["--version", "-v", "version"]
    }

    fn run(&self) -> BoxFuture<'_, Result<()>> {
        async {
            println!("v{}", get_version());
            Ok(())
        }
        .boxed()
    }
}

fn get_version() -> String {
    env!("CARGO_PKG_VERSION").to_string()
}