File: Cargo.toml.orig

package info (click to toggle)
rust-cobs 0.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 164 kB
  • sloc: makefile: 2
file content (20 lines) | stat: -rw-r--r-- 703 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[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"