From b86d20f0dd10495b660ec3409024152ba1228f16 Mon Sep 17 00:00:00 2001 From: Nick Zana Date: Fri, 9 Jun 2023 18:02:20 -0400 Subject: [PATCH] fido-common: Add TODO to de/serialize Transport::Unknown as inner String --- crates/fido-common/src/authenticator.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/fido-common/src/authenticator.rs b/crates/fido-common/src/authenticator.rs index ab1cd55..65984c9 100644 --- a/crates/fido-common/src/authenticator.rs +++ b/crates/fido-common/src/authenticator.rs @@ -195,5 +195,6 @@ pub enum Transport { /// > authenticators are not removable from the client device. #[cfg_attr(feature = "serde", serde(rename = "internal"))] Internal, - Unknown(String), + // TODO: Serialize as contents of string + Unknown(String), }