Izzy Swart

Results 1 issues of Izzy Swart

```Rust assert_eq!( Some(()), serde_cbor::from_slice::(serde_cbor::to_vec(&Some(())).unwrap().as_slice()).unwrap() ); ``` fails, as `serialize_unit` is implemented by simply calling `serialize_none` and `serialize_some` does not prepend a determinant (per CBOR specification). This leads to this incorrect...