[package]
name = "bkr"
version = "1.0.0"
edition = "2021"
description = "Backup and restore tool for syncing files to AWS S3 with native zstd compression"
authors = ["GoodWok <welcome@goodwok.dev>"]
license = "MIT"
repository = "https://github.com/goodwokdev/flow-bkr"
homepage = "https://github.com/goodwokdev/flow-bkr"
documentation = "https://docs.rs/bkr"
readme = "README.md"
keywords = ["backup", "s3", "aws", "sync", "zstd"]
categories = ["command-line-utilities", "filesystem"]
exclude = [
"target/",
".git/",
"tests/",
]
[[bin]]
name = "bkr"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
aws-config = { version = "1", features = ["behavior-version-latest"] }
aws-sdk-s3 = "1"
aws-credential-types = { version = "1", features = ["hardcoded-credentials"] }
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
walkdir = "2"
globset = "0.4"
md-5 = "0.10"
sha2 = "0.10"
zstd = "0.13"
tar = "0.4"
chrono = { version = "0.4", features = ["serde"] }
chrono-tz = "0.10"
shellexpand = "3"
dirs = "5"
mime_guess = "2"
thiserror = "2"
anyhow = "1"
gethostname = "0.5"
regex = "1"
glob = "0.3"
tempfile = "3"
tokio-stream = "0.1"
futures = "0.3"
[dev-dependencies]
filetime = "0.2"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true