Make ctap2::CtapMappingError private

The type is only used internally and does not have to be part of the
public API.
This commit is contained in:
Robin Krahl
2026-06-08 10:05:24 +02:00
parent 53359f7138
commit f8a76d3e84
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Remove unused `Rpc` trait.
- Remove `cbor-smol` re-export as `serde`.
- Make `ctap2::CtapMappingError` private.
## [0.6.0-rc.4] 2026-06-01
+1 -1
View File
@@ -53,7 +53,7 @@ pub enum Request<'a> {
Vendor(crate::operation::VendorOperation),
}
pub enum CtapMappingError {
enum CtapMappingError {
InvalidCommand(u8),
ParsingError(cbor_smol::Error),
}