21 lines
703 B
TOML
21 lines
703 B
TOML
|
[package]
|
||
|
name = "cobs"
|
||
|
version = "0.2.3"
|
||
|
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/jamesmunns/cobs.rs"
|
||
|
keywords = ["consistent", "overhead", "byte", "stuffing"]
|
||
|
edition = "2018"
|
||
|
|
||
|
[features]
|
||
|
default = ["use_std"]
|
||
|
use_std = []
|
||
|
|
||
|
[dev-dependencies]
|
||
|
quickcheck = "^0.5.0"
|