bkr 1.0.0

Backup and restore tool for syncing files to AWS S3 with native zstd compression
Documentation
[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]
# CLI
clap = { version = "4", features = ["derive"] }

# Async runtime
tokio = { version = "1", features = ["full"] }

# AWS SDK
aws-config = { version = "1", features = ["behavior-version-latest"] }
aws-sdk-s3 = "1"
aws-credential-types = { version = "1", features = ["hardcoded-credentials"] }

# Serialization
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"

# File operations
walkdir = "2"
globset = "0.4"

# Hashing
md-5 = "0.10"
sha2 = "0.10"

# Compression (native!)
zstd = "0.13"
tar = "0.4"

# Date/time
chrono = { version = "0.4", features = ["serde"] }
chrono-tz = "0.10"

# Path utilities
shellexpand = "3"
dirs = "5"

# MIME types
mime_guess = "2"

# Error handling
thiserror = "2"
anyhow = "1"

# System info
gethostname = "0.5"

# Pattern matching
regex = "1"
glob = "0.3"

# Temp files
tempfile = "3"

# Async streams
tokio-stream = "0.1"
futures = "0.3"

[dev-dependencies]
filetime = "0.2"

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true