s3sync 1.58.6

Reliable, flexible, and fast synchronization tool for S3.
Documentation
1
2
3
4
5
6
7
8
9
10
11
# CLAUDE.md

## Git Workflow

- Always ask a person to review the code before committing it.
- Always verify that there are no errors using `cargo fmt` before committing to Git.
- Always verify that there are no errors using `cargo clippy --all-features` before committing to Git.

## Testing

- Never run e2e tests (`RUSTFLAGS="--cfg e2e_test" cargo test`). They hit real AWS and are for the user to run. Use `cargo check` / `cargo clippy` under the same `RUSTFLAGS` when you need to verify e2e code compiles.