Function captures

Source
pub fn captures(args: Args) -> Vec<String>
Expand description

List the git tags in the project

ยงExamples

use git_semver_tags::{captures, Args};
use anyhow::Result;

fn main() -> Result<()> {
    let args = Args::default();
    for tag in captures(&args).iter() {
        println!("{}", tag);
    }
    Ok(())
}