hbackup 0.5.6

hbackup is a sample, high-performance, cross-platform backup tool written in Rust. It is designed to be fast, efficient, and easy to use, with a focus on performance and reliability.
Documentation
/// Package name.
pub(crate) const PKG_NAME: &str = env!("CARGO_PKG_NAME");
/// Default configuration file name.
pub(crate) const CONFIG_NAME: &str = "config.toml";

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_pkg_name() {
        assert_eq!(PKG_NAME, "hbackup");
    }

    #[test]
    fn test_config_name() {
        assert_eq!(CONFIG_NAME, "config.toml");
        assert!(CONFIG_NAME.ends_with(".toml"));
    }
}