├── .github ├── dependabot.yml └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── custom_key_bearer.rs └── custom_key_ip.rs └── src ├── extractor.rs ├── key_extractor.rs ├── lib.rs ├── service.rs └── tests.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronErhardt/actix-governor/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronErhardt/actix-governor/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronErhardt/actix-governor/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronErhardt/actix-governor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronErhardt/actix-governor/HEAD/README.md -------------------------------------------------------------------------------- /examples/custom_key_bearer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronErhardt/actix-governor/HEAD/examples/custom_key_bearer.rs -------------------------------------------------------------------------------- /examples/custom_key_ip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronErhardt/actix-governor/HEAD/examples/custom_key_ip.rs -------------------------------------------------------------------------------- /src/extractor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronErhardt/actix-governor/HEAD/src/extractor.rs -------------------------------------------------------------------------------- /src/key_extractor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronErhardt/actix-governor/HEAD/src/key_extractor.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronErhardt/actix-governor/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronErhardt/actix-governor/HEAD/src/service.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronErhardt/actix-governor/HEAD/src/tests.rs --------------------------------------------------------------------------------