CBOR (de)serialization using serde currently relies on ciborium, as explained in src/serde_support.rs. Currently this leads to two (de)serialization operations in a row to check the format and create resulting CMW value. A better option would be to only (de)serialize once, and then convert to/from the corresponding ciborium Value.
CBOR (de)serialization using
serdecurrently relies onciborium, as explained insrc/serde_support.rs. Currently this leads to two (de)serialization operations in a row to check the format and create resulting CMW value. A better option would be to only (de)serialize once, and then convert to/from the correspondingciboriumValue.