Skip to content

Commit

Permalink
Relax cbor-smol dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
robin-nitrokey committed Oct 22, 2024
1 parent 699539a commit a33879b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/trussed-dev/ctap-types"
[dependencies]
arbitrary = { version = "1.3.2", features = ["derive"], optional = true }
bitflags = "1.3"
cbor-smol = "0.4"
cbor-smol = { version = ">= 0.4.1, < 0.6", features = ["heapless-bytes-v0-3"] }
cosey = "0.3.1"
delog = "0.1"
heapless = { version = "0.7", default-features = false, features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion src/ctap2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ impl<'a, A: SerializeAttestedCredentialData, E: serde::Serialize> AuthenticatorD

// the extensions data
if let Some(extensions) = self.extensions.as_ref() {
cbor_smol::cbor_serialize_extending_bytes(extensions, &mut bytes)
cbor_smol::cbor_serialize_to(extensions, &mut bytes)
.map_err(|_| Error::Other)?;
}

Expand Down

0 comments on commit a33879b

Please sign in to comment.