├── .github ├── dependabot.yml └── workflows │ ├── ci-version.yml │ └── ci.yml ├── .gitignore ├── Cargo.toml ├── Makefile ├── README.md ├── rustfmt.toml └── src ├── cli.rs ├── functions.rs ├── lib.rs ├── main.rs ├── server.rs └── uds_serve.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magiclen/nginx-cache-purge/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magiclen/nginx-cache-purge/HEAD/.github/workflows/ci-version.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magiclen/nginx-cache-purge/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magiclen/nginx-cache-purge/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magiclen/nginx-cache-purge/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magiclen/nginx-cache-purge/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magiclen/nginx-cache-purge/HEAD/README.md -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magiclen/nginx-cache-purge/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magiclen/nginx-cache-purge/HEAD/src/cli.rs -------------------------------------------------------------------------------- /src/functions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magiclen/nginx-cache-purge/HEAD/src/functions.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magiclen/nginx-cache-purge/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magiclen/nginx-cache-purge/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magiclen/nginx-cache-purge/HEAD/src/server.rs -------------------------------------------------------------------------------- /src/uds_serve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magiclen/nginx-cache-purge/HEAD/src/uds_serve.rs --------------------------------------------------------------------------------