mirror of
https://github.com/TECHNOFAB11/jwt-authorizer.git
synced 2025-12-11 23:50:07 +01:00
chore: release 0.10.0
This commit is contained in:
parent
d3fc883006
commit
7f9ad54694
4 changed files with 13 additions and 3 deletions
|
|
@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
## 0.10.0 (2023-05-19)
|
||||||
|
|
||||||
|
- tonic services support
|
||||||
|
- choices of TLS support (corresponding to underlying reqwest crate features)
|
||||||
|
- `RegisteredClaims` added (representing RFC7519 registered claims), used as default for `JwtAuthorizer`
|
||||||
|
|
||||||
## 0.9.0 (2023-04-14)
|
## 0.9.0 (2023-04-14)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
||||||
2
Cargo.lock
generated
2
Cargo.lock
generated
|
|
@ -858,7 +858,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "jwt-authorizer"
|
name = "jwt-authorizer"
|
||||||
version = "0.9.0"
|
version = "0.10.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"axum",
|
"axum",
|
||||||
"chrono",
|
"chrono",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# jwt-authorizer
|
# jwt-authorizer
|
||||||
|
|
||||||
JWT authorizer Layer for Axum and Tonic.
|
JWT authorizer Layer for Axum.
|
||||||
|
|
||||||
[](https://github.com/tokio-rs/cduvray/jwt-authorizer/workflows/ci.yml)
|
[](https://github.com/tokio-rs/cduvray/jwt-authorizer/workflows/ci.yml)
|
||||||
[](https://crates.io/crates/jwt-authorizer)
|
[](https://crates.io/crates/jwt-authorizer)
|
||||||
|
|
@ -16,8 +16,10 @@ JWT authorizer Layer for Axum and Tonic.
|
||||||
- Validation
|
- Validation
|
||||||
- exp, nbf, iss, aud
|
- exp, nbf, iss, aud
|
||||||
- Claims extraction
|
- Claims extraction
|
||||||
|
- into custom deserializable structs or into `RegisteredClaims` (default)
|
||||||
- Claims checker
|
- Claims checker
|
||||||
- Tracing support (error logging)
|
- Tracing support (error logging)
|
||||||
|
- *tonic* support
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "jwt-authorizer"
|
name = "jwt-authorizer"
|
||||||
description = "jwt authorizer middleware for axum and tonic"
|
description = "jwt authorizer middleware for axum and tonic"
|
||||||
version = "0.9.0"
|
version = "0.10.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["cduvray <c_duvray@proton.me>"]
|
authors = ["cduvray <c_duvray@proton.me>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue