mirror of
https://codeberg.org/pfzetto/axum-oidc
synced 2025-12-08 06:05:16 +01:00
first implementation
This commit is contained in:
parent
1b3973064b
commit
aa05cf6bde
7 changed files with 720 additions and 8 deletions
14
Cargo.toml
14
Cargo.toml
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "axum-oidc"
|
||||
description = "A OpenID Connect Client and Bearer Token Libary for axum"
|
||||
description = "A OpenID Connect Client Libary for axum"
|
||||
version = "0.0.0"
|
||||
edition = "2021"
|
||||
authors = [ "Paul Z <info@pfz4.de>" ]
|
||||
|
|
@ -12,3 +12,15 @@ keywords = [ "axum", "oidc", "openidconnect", "authentication" ]
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
thiserror = "1.0.50"
|
||||
axum-core = "0.3"
|
||||
axum = { version = "0.6", default-features = false, features = [ "query" ] }
|
||||
tower-service = "0.3.2"
|
||||
tower-layer = "0.3.2"
|
||||
tower-sessions = { version = "0.4", default-features = false, features = [ "axum-core" ] }
|
||||
http = "0.2"
|
||||
async-trait = "0.1"
|
||||
openidconnect = "3.4"
|
||||
serde = "1.0"
|
||||
futures-util = "0.3"
|
||||
reqwest = { version = "0.11", default-features = false }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue