From 4a0c527d486ae31b736d8995ade2bbe03ef5e1dd Mon Sep 17 00:00:00 2001 From: Lewin Bormann Date: Thu, 7 Apr 2022 17:48:36 -0700 Subject: [PATCH] Release v6.5.1: Fix visibility of authorized_user module --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0691f3b..6e91667 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "yup-oauth2" -version = "6.5.0" +version = "6.5.1" authors = ["Sebastian Thiel ", "Lewin Bormann "] repository = "https://github.com/dermesser/yup-oauth2" description = "An oauth2 implementation, providing the 'device', 'service account' and 'installed' authorization flows" diff --git a/src/lib.rs b/src/lib.rs index c6c0997..ac7ee1b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -75,7 +75,7 @@ mod application_default_credentials; pub mod authenticator; pub mod authenticator_delegate; -mod authorized_user; +pub mod authorized_user; mod device; pub mod error; mod helper;