From cf37cd211d303a111d2618e70c79105333118fdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Andr=C3=A9s=20Dorado=20Su=C3=A1rez?= Date: Sat, 12 Oct 2024 23:44:46 -0500 Subject: [PATCH] fix(fc-traits-authn): auxiliary trait `VerifyCredential` should be public --- traits/authn/src/util.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/traits/authn/src/util.rs b/traits/authn/src/util.rs index 1f18e44..c97a2ef 100644 --- a/traits/authn/src/util.rs +++ b/traits/authn/src/util.rs @@ -38,7 +38,7 @@ where } } -trait VerifyCredential { +pub trait VerifyCredential { fn verify(&self, credential: &Cred) -> Option<()>; }