A very minimal no_std Consistent Overhead Byte Stuffing library.
This library provides 2 functions.
stuff
and unstuff
which encode and decode according to the COBS standard,
respectively.
```rust let data: [u8; 254] = [ // ...snip ];
// Encode the data let encoded: [u8; 256] = cobs_rs::stuff(data, 0x00);
// ... snip
// Decode the data let decoded: [u8; 254] = cobs_rs::unstuff(encoded, 0x00);
assert_eq!(data, decoded); ```
Licensed under a MIT license.