prs-cli 0.5.6

Secure, fast & convenient password manager CLI with GPG & git sync
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn main() {
    // Warn at compiletime if no interactive selection tool is configured
    #[cfg(all(
        not(all(feature = "select-skim", unix)),
        not(feature = "select-skim-bin"),
        not(feature = "select-fzf-bin"),
    ))]
    {
        println!(
            "cargo:warning=no interactive select mode features configured, falling back to basic mode"
        );
        println!("cargo:warning=use any of: select-skim, select-skim-bin, select-fzf-bin");
    }
}