snapdir-cli 1.9.0

snapdir CLI implementation: the library behind the `snapdir` binary (which ships in the `snapdir` crate).
Documentation
```
$ snapdir defaults --help
Print default settings and arguments

Usage: snapdir defaults [OPTIONS]

Options:
  -q, --quiet
          Suppress stderr banners and the live progress line

      --store <URI>
          Store URI: `protocol://location/path`
          
          [env: SNAPDIR_STORE=]

      --catalog <NAME>
          Catalog adapter to record this snapshot's location in
          
          [env: SNAPDIR_CATALOG=]

      --color <WHEN>
          When to colorize progress output: auto, always, or never

          Possible values:
          - auto:   Color when attached to a TTY and `NO_COLOR` is unset (default)
          - always: Always emit color
          - never:  Never emit color
          
          [default: auto]

      --no-progress
          Disable the live progress line (transfers still run)
          
          [env: SNAPDIR_NO_PROGRESS=]

      --objects-store <URI>
          Shared object-pool store URI
          
          [env: SNAPDIR_OBJECTS_STORE=]

      --cache-dir <DIR>
          Directory where the object cache is stored
          
          [env: SNAPDIR_CACHE_DIR=]

      --verbose
          Enable verbose output. Honored by the transfer commands (push/fetch/pull/checkout/stage/sync emit an effective-config banner and CACHED/SAVED notices) and verify-cache (purge notices); inert elsewhere

      --walk-jobs <N>
          Max parallel file-hashing jobs during the directory walk (0/auto = number of CPUs, capped)
          
          [env: SNAPDIR_WALK_JOBS=]

  -j, --jobs <N>
          Max concurrent object transfers (0/auto = number of CPUs, capped)
          
          [env: SNAPDIR_JOBS=]

      --limit-rate <RATE>
          Limit total transfer bandwidth, e.g. 10M, 512K, 1G (wget-style; aggregate across all transfers)
          
          [env: SNAPDIR_LIMIT_RATE=]

      --adaptive[=<FRACTION>]
          Adaptively tune transfer concurrency/bandwidth toward a fraction of measured capacity
          
          [env: SNAPDIR_ADAPTIVE=]

      --max-jobs <N>
          Adaptive concurrency ceiling (only meaningful with `--adaptive`)
          
          [env: SNAPDIR_MAX_JOBS=]

      --max-retries <N>
          Total retry attempts per network request, including the first (default 5)

      --retry-base-ms <MS>
          Base backoff delay in milliseconds for request retries (default 250)

      --retry-max-ms <MS>
          Maximum backoff delay in milliseconds for request retries (default 30000)

      --max-requests <N>
          Cap request rate (req/s); 0/unset uses the per-backend default

  -h, --help
          Print help (see a summary with '-h')

  -V, --version
          Print version

```