auth-framework 0.5.0-rc19

A comprehensive, production-ready authentication and authorization framework for Rust applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# Security Schemes
# This file defines authentication and authorization mechanisms used by the API

bearerAuth:
    type: http
    scheme: bearer
    bearerFormat: JWT
    description: |

        JWT Bearer token authentication. Include the token in the Authorization header:
        ```
        Authorization: Bearer <your-access-token>
        ```