gitextract_5263lj6x/ ├── .gitattributes ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE ├── README.md ├── SECURITY.md ├── appveyor.yml ├── build.rs ├── contrib/ │ ├── completions/ │ │ ├── _ffsend │ │ ├── _ffsend.ps1 │ │ ├── ffsend.bash │ │ ├── ffsend.elv │ │ ├── ffsend.fish │ │ └── gen_completions │ └── util/ │ └── nautilus/ │ ├── README.md │ └── firefox-send ├── pkg/ │ ├── alpine/ │ │ └── APKBUILD │ ├── aur/ │ │ ├── aur.pub │ │ ├── ffsend/ │ │ │ └── PKGBUILD │ │ ├── ffsend-bin/ │ │ │ └── PKGBUILD │ │ └── ffsend-git/ │ │ └── PKGBUILD │ ├── choco/ │ │ └── ffsend/ │ │ ├── ffsend.nuspec │ │ └── tools/ │ │ ├── LICENSE.txt │ │ └── VERIFICATION.txt │ ├── create_deb │ ├── deb/ │ │ ├── postinst │ │ └── prerm │ ├── docker/ │ │ └── Dockerfile │ └── scoop/ │ ├── README.md │ └── ffsend.json ├── res/ │ ├── asciinema-demo.json │ └── asciinema-to-svg └── src/ ├── action/ │ ├── debug.rs │ ├── delete.rs │ ├── download.rs │ ├── exists.rs │ ├── generate/ │ │ ├── completions.rs │ │ └── mod.rs │ ├── history.rs │ ├── info.rs │ ├── mod.rs │ ├── params.rs │ ├── password.rs │ ├── upload.rs │ └── version.rs ├── archive/ │ ├── archive.rs │ ├── archiver.rs │ └── mod.rs ├── client.rs ├── cmd/ │ ├── arg/ │ │ ├── api.rs │ │ ├── basic_auth.rs │ │ ├── download_limit.rs │ │ ├── expiry_time.rs │ │ ├── gen_passphrase.rs │ │ ├── host.rs │ │ ├── mod.rs │ │ ├── owner.rs │ │ ├── password.rs │ │ └── url.rs │ ├── handler.rs │ ├── matcher/ │ │ ├── debug.rs │ │ ├── delete.rs │ │ ├── download.rs │ │ ├── exists.rs │ │ ├── generate/ │ │ │ ├── completions.rs │ │ │ └── mod.rs │ │ ├── history.rs │ │ ├── info.rs │ │ ├── main.rs │ │ ├── mod.rs │ │ ├── params.rs │ │ ├── password.rs │ │ ├── upload.rs │ │ └── version.rs │ ├── mod.rs │ └── subcmd/ │ ├── debug.rs │ ├── delete.rs │ ├── download.rs │ ├── exists.rs │ ├── generate/ │ │ ├── completions.rs │ │ └── mod.rs │ ├── history.rs │ ├── info.rs │ ├── mod.rs │ ├── params.rs │ ├── password.rs │ ├── upload.rs │ └── version.rs ├── config.rs ├── error.rs ├── history.rs ├── history_tool.rs ├── host.rs ├── main.rs ├── progress.rs ├── urlshorten.rs └── util.rs