From de4e3c39e03592bba690130ada268f027d54efaf Mon Sep 17 00:00:00 2001 From: Nick Zana Date: Fri, 16 Jun 2023 21:03:34 -0400 Subject: [PATCH] ctap2-proto: Import std::fmt::Display used for authenticator::credential::management::Error --- crates/ctap2-proto/src/authenticator/credential/management.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/ctap2-proto/src/authenticator/credential/management.rs b/crates/ctap2-proto/src/authenticator/credential/management.rs index 1ba62aa..6e51e16 100644 --- a/crates/ctap2-proto/src/authenticator/credential/management.rs +++ b/crates/ctap2-proto/src/authenticator/credential/management.rs @@ -1,5 +1,7 @@ use crate::{authenticator::client_pin, extensions::cred_protect, Sha256Hash}; use fido_common::credential::public_key; +use std::fmt::Display; + pub type PinUvAuthParam = [u8; 16];