update openidconnect rust lib

This commit is contained in:
Grant Limberg 2023-08-07 10:41:19 -07:00
parent 04a3206e53
commit 0dc92c2d7b
No known key found for this signature in database
GPG key ID: 8F2F97D3BE8D7735
2 changed files with 370 additions and 46 deletions

View file

@ -6,14 +6,18 @@ build = "build.rs"
publish = false
[lib]
crate-type = ["staticlib","rlib"]
crate-type = ["staticlib", "rlib"]
[dependencies]
openidconnect = { version = "2.5", default-features = false, features = ["reqwest", "native-tls", "accept-rfc3339-timestamps"] }
openidconnect = { version = "3.3", default-features = false, features = [
"reqwest",
"native-tls",
"accept-rfc3339-timestamps",
] }
base64 = "0.21"
url = "2.3"
reqwest = "0.11"
jwt = {version = "0.16", git = "https://github.com/glimberg/rust-jwt"}
jwt = { version = "0.16", git = "https://github.com/glimberg/rust-jwt" }
serde = "1.0"
time = { version = "~0.3", features = ["formatting"] }
bytes = "1.3"