postcard-cobs 0.2.0

This is an implementation of the Consistent Overhead Byte Stuffing (COBS) algorithm. COBS is an algorithm for transforming a message into an encoding where a specific value (the "sentinel" value) is not used. This value can then be used to mark frame boundaries in a serial communication channel.
Documentation
[package]
name = "postcard-cobs"
version = "0.2.0"
authors = ["Allen Welkie <>", "James Munns <james.munns@ferrous-systems.com>"]
license = "MIT OR Apache-2.0"
description = """
    This is an implementation of the Consistent Overhead Byte Stuffing (COBS) algorithm.
    COBS is an algorithm for transforming a message into an encoding where a specific value
    (the "sentinel" value) is not used. This value can then be used to mark frame boundaries
    in a serial communication channel. """
repository = "https://github.com/ferrous-systems/cobs.rs"
keywords = ["consistent", "overhead", "byte", "stuffing"]
edition = "2018"

[features]
default = ["use_std"]
use_std = []

[dev-dependencies]
quickcheck = "^0.5.0"