From 2d975f275c01e5df1e8f416a51d01dd75d83d8a2 Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Tue, 29 Mar 2022 09:11:25 -0700 Subject: [PATCH] enable rfc3339 timestamps in oidc library for auth0 --- zeroidc/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zeroidc/Cargo.toml b/zeroidc/Cargo.toml index 9b4449dd2..68fa99488 100644 --- a/zeroidc/Cargo.toml +++ b/zeroidc/Cargo.toml @@ -12,7 +12,7 @@ crate-type = ["staticlib","rlib"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -openidconnect = { version = "2.2", default-features = false, features = ["reqwest", "native-tls"] } +openidconnect = { version = "2.2", default-features = false, features = ["reqwest", "native-tls", "accept-rfc3339-timestamps"] } base64 = "0.13" url = "2.2" reqwest = "0.11"