zoxide 0.5.0

A faster way to navigate your filesystem
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::process::Command;

fn main() {
    let git_describe = Command::new("git")
        .args(&["describe", "--tags", "--broken"])
        .output()
        .ok()
        .and_then(|proc| String::from_utf8(proc.stdout).ok());

    let version_info = match git_describe {
        Some(description) if !description.is_empty() => description,
        _ => format!("v{}-unknown", env!("CARGO_PKG_VERSION")),
    };

    println!("cargo:rustc-env=ZOXIDE_VERSION={}", version_info);
}