From 960fd71ec20b4204b31342a1f2a20458784e5d98 Mon Sep 17 00:00:00 2001 From: mae <26093674+MaeIsBad@users.noreply.github.com> Date: Thu, 22 Aug 2024 16:44:51 +0200 Subject: [PATCH] fixup! Remove jwks_client dependency --- src/auth0/mod.rs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/auth0/mod.rs b/src/auth0/mod.rs index c876e7c..a6a52d5 100644 --- a/src/auth0/mod.rs +++ b/src/auth0/mod.rs @@ -43,13 +43,7 @@ impl Auth0 { let token_lock: Arc> = Arc::new(RwLock::new(token)); - start( - token_lock.clone(), - client_ref.clone(), - cache.clone(), - config, - ) - .await; + start(token_lock.clone(), client_ref.clone(), cache.clone(), config).await; Ok(Self { token_lock }) }