diff --git a/crates/webauthn3-proto/src/client.rs b/crates/webauthn3-proto/src/client.rs index 1cb9379..d2a7ee4 100644 --- a/crates/webauthn3-proto/src/client.rs +++ b/crates/webauthn3-proto/src/client.rs @@ -32,18 +32,3 @@ pub struct Data { /// > absence indicates that the client doesn’t support token binding. pub token_binding: Option, } - -#[cfg(feature = "serde")] -impl Serialize for Data { - fn serialize(&self, serializer: S) -> Result - where - S: serde::Serializer, - { - // Keys are: "type", "challenge", "origin", "topOrigin", "crossOrigin" - const LEN: usize = 5; - let mut map = serializer.serialize_map(Some(LEN))?; - - // map.serialize_entry("type", value) - todo!() - } -}