hbackup 0.3.2

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
[[bin]]
name = "bk"
path = "src/bin/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.bzip2]
version = "0.6"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.dirs]
version = "6.0"

[dependencies.flate2]
version = "1.1"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.sevenz-rust2]
features = ["compress", "util"]
version = "0.15"

[dependencies.tar]
version = "0.4"

[dependencies.toml]
version = "0.8"

[dependencies.walkdir]
version = "2.5"

[dependencies.zip]
version = "4.2"

[dependencies.zstd]
version = "0.13"

[lib]
name = "hbackup"
path = "src/lib.rs"

[package]
authors = ["asthetik"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities"]
description = "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."
edition = "2021"
exclude = [".github/*", "scripts/*"]
keywords = ["hbackup", "bk", "backup", "cli"]
license = "MIT"
name = "hbackup"
readme = "README.md"
repository = "https://github.com/asthetik/hbackup"
version = "0.3.2"

[profile.release]
debug = 1
lto = "thin"

[profile.release-lto]
codegen-units = 1
debug-assertions = false
incremental = false
inherits = "release"
lto = "fat"
opt-level = 3
panic = "abort"
strip = "symbols"