hbackup 0.2.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.98"

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

[dependencies.dirs]
version = "6.0.0"

[dependencies.path-clean]
version = "1.0.1"

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

[dependencies.serde_json]
version = "1.0"

[dev-dependencies.assert_cmd]
version = "2.0"

[dev-dependencies.assert_fs]
version = "1.1"

[dev-dependencies.predicates]
version = "3.1"

[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.2.2"

[profile.release]
debug = 1

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

[[test]]
name = "cli"
path = "tests/cli.rs"