mirror of
https://codeberg.org/pfzetto/axum-oidc
synced 2025-12-09 22:55:17 +01:00
add UserInfoClaims
add allow additional audiences add tracing update basic example apply clippy lints
This commit is contained in:
parent
65cb175603
commit
5952cbff95
9 changed files with 226 additions and 52 deletions
|
|
@ -1,25 +1,32 @@
|
|||
[package]
|
||||
edition = "2021"
|
||||
name = "basic"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
tokio = { version = "1.43", features = ["net", "macros", "rt-multi-thread"] }
|
||||
axum = { version = "0.8", features = [ "macros" ]}
|
||||
axum = { version = "0.8", features = ["macros"] }
|
||||
axum-oidc = { path = "./../.." }
|
||||
dotenvy = "0.15"
|
||||
tokio = { version = "1.43", features = ["macros", "net", "rt-multi-thread"] }
|
||||
tower = "0.5"
|
||||
tower-sessions = "0.14"
|
||||
|
||||
dotenvy = "0.15"
|
||||
openidconnect = "4.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0.140"
|
||||
tracing-subscriber = "0.3.19"
|
||||
tracing = "0.1.41"
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = "0.11"
|
||||
headless_chrome = "1.0"
|
||||
log = "0.4"
|
||||
reqwest = { version = "0.12", features = [
|
||||
"rustls-tls",
|
||||
], default-features = false }
|
||||
testcontainers = "0.23"
|
||||
tokio = { version = "1.43", features = ["rt-multi-thread"] }
|
||||
reqwest = { version = "0.12", features = ["rustls-tls"], default-features = false }
|
||||
env_logger = "0.11"
|
||||
log = "0.4"
|
||||
headless_chrome = "1.0"
|
||||
#see https://github.com/rust-headless-chrome/rust-headless-chrome/issues/535
|
||||
auto_generate_cdp = "=0.4.4"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue