s3sync 1.61.2

Reliable, flexible, and fast synchronization tool for S3.
Documentation
[package]
name = "s3sync"
version = "1.61.2"
edition = "2024"
authors = ["nidor1998 <nidor1998@gmail.com>"]
description = "Reliable, flexible, and fast synchronization tool for S3."
license = "Apache-2.0"
rust-version = "1.94.1"
repository = "https://github.com/nidor1998/s3sync"
homepage = "https://github.com/nidor1998/s3sync"
documentation = "https://docs.rs/s3sync"
readme = "README.md"
keywords = ["AWS", "Amazon", "S3", "sync"]
categories = ["command-line-utilities", "filesystem", "asynchronous", "concurrency"]

[dependencies]
anyhow = { version = "1.0.104" }
async-trait = "0.1.91"
async-channel = "2.5.0"
aws-config = { version = "1.10.1", default-features = false, features = ["behavior-version-latest", "default-https-client", "rt-tokio", "credentials-process", "sso"] }
aws-runtime = "1.9.1"
aws-sdk-s3 = { version = "1.140.0", default-features = false, features = ["sigv4a", "http-1x", "default-https-client", "rt-tokio"] }
aws-smithy-runtime-api = "1.14.0"
aws-smithy-types = { version = "1.6.1" }
aws-smithy-types-convert = { version = "0.61.1", features = ["convert-chrono"] }
aws-types = "1.5.0"
bitflags = "2.13.1"
base64 = "0.23.0"
byte-unit = "5.2.5"
cfg-if = "1.0.4"
clap = { version = "4.6.4", features = ["derive", "env", "cargo", "string"] }
clap_complete = "4.6.7"
clap-verbosity-flag = "3.0.4"
chrono = "0.4.45"
crc32c = "0.6.8"
crc32fast = "1.5.0"
crc-fast = "1.10.0"
dyn-clone = "1.0.20"
fancy-regex = "0.18.0"
filetime = "0.2.29"
futures = "0.3.33"
futures-util = "0.3.33"
leaky-bucket = "1.1.2"
md5 = "0.8.1"
mime_guess = "2.0.5"
hex = "0.4.3"
http-body-util = "0.1.4"
hyper = "1.11.0"
indicatif = "0.18.6"
log = "0.4.33"
pin-project = "1.1.13"
percent-encoding = "2.3.2"
regex = "1.13.1"
rusty-fork = "0.3.1"
sha1 = "0.11.0"
sha2 = "0.11.0"
shadow-rs = { version = "2.0.0", optional = true }
simple_moving_average = "1.0.2"
tempfile = "3.27.0"
thiserror = "2.0.19"
tokio = { version = "1.53.1", features = ["full"] }
tokio-util = "0.7.19"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter", "json", "local-time"] }
url = "2.5.8"
urlencoding = "2.1.3"
walkdir = "2.5.0"
zeroize = "1.9.0"
zeroize_derive = "1.5.0"

## The following dependencies are only required for lua support.
## If you want to luagit, you can specify the `luajit` feature.
## mlua = { version = "0.11", features = ["luajit", "async", "send", "vendored"], optional = true }
## If you want to lua5.5, you can specify the `luajit` feature.
## mlua = { version = "0.11", features = ["lua55", "async", "send", "vendored"], optional = true }
## If you have trouble with third-party Lua libraries, remove `vendored` feature(static linking). This will use the system Lua engine.
## But you need to install Lua engine according to your OS.
mlua = { version = "0.12.0", features = ["lua54", "async", "send", "vendored"], optional = true }

[dev-dependencies]
nix = { version = "0.31.3", features = ["user", "process", "signal"] }
once_cell = "1.21.4"
uuid = { version = "1.24.0", features = ["v4"] }

[build-dependencies]
shadow-rs = { version = "2.0.0", optional = true }

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage_nightly)', 'cfg(e2e_test)', 'cfg(e2e_test_dangerous_simulations)'] }

[features]
default = ["version", "lua_support"]

# Add detailed build information to the CLI version output
version = ["dep:shadow-rs"]

lua_support = ["dep:mlua"]

[profile.release]
debug = 1
panic = "unwind"  # For tempfile::NamedTempFile
opt-level = 3
strip = "symbols"
lto = "fat"
codegen-units = 1

[profile.release-min-size]
inherits = "release"
debug = 0
panic = "abort"
opt-level = "z"