cobs 0.2.3

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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
language: rust
rust:
  - stable
  - beta
  - nightly

install:
  - rustup target add thumbv7em-none-eabihf
  
script:
- cargo build
- cargo test

# Check for no_std compatibility by building for an embedded target
- cargo build --no-default-features --target=thumbv7em-none-eabihf