From 876263a91a745ec488561d7206e266d869235b04 Mon Sep 17 00:00:00 2001 From: mae <26093674+MaeIsBad@users.noreply.github.com> Date: Thu, 22 Aug 2024 16:46:54 +0200 Subject: [PATCH] fixup! Remove jwks_client dependency --- src/auth0/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/auth0/mod.rs b/src/auth0/mod.rs index aa22240..c8c8984 100644 --- a/src/auth0/mod.rs +++ b/src/auth0/mod.rs @@ -1,7 +1,6 @@ //! Stuff used to provide JWT authentication via Auth0 use std::sync::{Arc, RwLock, RwLockReadGuard, RwLockWriteGuard}; -use std::time::Duration; use reqwest::Client; use tokio::task::JoinHandle;