gitextract_9556vlw0/ ├── .github/ │ └── workflows/ │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── FAQ.md ├── LICENSE ├── README.md ├── RELEASE-CHECKLIST.md ├── assets/ │ ├── README.md │ ├── syntax/ │ │ ├── basic/ │ │ │ └── json.sublime-syntax │ │ └── large/ │ │ ├── css.sublime-syntax │ │ ├── html.sublime-syntax │ │ ├── js.sublime-syntax │ │ └── xml.sublime-syntax │ └── themes/ │ ├── ansi.tmTheme │ ├── fruity.tmTheme │ ├── monokai.tmTheme │ └── solarized.tmTheme ├── build.rs ├── completions/ │ ├── _xh │ ├── _xh.ps1 │ ├── xh.bash │ ├── xh.elv │ ├── xh.fish │ └── xh.nu ├── doc/ │ ├── man-template.roff │ └── xh.1 ├── install.ps1 ├── install.sh ├── src/ │ ├── auth.rs │ ├── buffer.rs │ ├── cli.rs │ ├── content_disposition.rs │ ├── decoder.rs │ ├── download.rs │ ├── error_reporting.rs │ ├── formatting/ │ │ ├── headers.rs │ │ ├── mod.rs │ │ └── palette.rs │ ├── generation.rs │ ├── main.rs │ ├── message_signature.rs │ ├── middleware.rs │ ├── nested_json.rs │ ├── netrc.rs │ ├── printer.rs │ ├── redacted.rs │ ├── redirect.rs │ ├── request_items.rs │ ├── session.rs │ ├── to_curl.rs │ └── utils.rs └── tests/ ├── cases/ │ ├── auth_message_signature.rs │ ├── compress_request_body.rs │ ├── download.rs │ ├── logging.rs │ ├── mod.rs │ ├── unix_socket.rs │ └── xml.rs ├── cli.rs ├── fixtures/ │ ├── certs/ │ │ ├── README.md │ │ ├── client.badssl.com.crt │ │ ├── client.badssl.com.key │ │ └── wildcard-self-signed.pem │ ├── keys/ │ │ └── rsa_private_key_pkcs8.pem │ └── responses/ │ ├── README.md │ ├── hello_world.br │ ├── hello_world.zst │ └── hello_world.zz └── server/ └── mod.rs