├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src ├── auth_basic.rs ├── auth_bearer.rs └── lib.rs └── tests ├── basic.rs └── custom.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owez/axum-auth/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owez/axum-auth/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owez/axum-auth/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owez/axum-auth/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owez/axum-auth/HEAD/README.md -------------------------------------------------------------------------------- /src/auth_basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owez/axum-auth/HEAD/src/auth_basic.rs -------------------------------------------------------------------------------- /src/auth_bearer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owez/axum-auth/HEAD/src/auth_bearer.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owez/axum-auth/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owez/axum-auth/HEAD/tests/basic.rs -------------------------------------------------------------------------------- /tests/custom.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Owez/axum-auth/HEAD/tests/custom.rs --------------------------------------------------------------------------------