keycli 0.1.3

An environment manager which stores your secrets in your OS keyring
1
2
3
4
5
6
7
8
9
10
11
12
//! Module containing diverse constants

pub const TOOL_NAME: &str = env!("CARGO_PKG_NAME");
pub const TOOL_VERSION: &str = env!("CARGO_PKG_VERSION");
pub const DEFAULT_CONF_FILE: &str = ".keycli.conf";
pub const PATH_HEADER: &str = "# keycli-template-path ";
pub const SHA_HEADER: &str = "# keycli-template-sha ";

#[cfg(windows)]
pub const LINE_ENDING: &str = "\r\n";
#[cfg(not(windows))]
pub const LINE_ENDING: &str = "\n";