53 lines
1.4 KiB
TOML
53 lines
1.4 KiB
TOML
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
||
|
#
|
||
|
# When uploading crates to the registry Cargo will automatically
|
||
|
# "normalize" Cargo.toml files for maximal compatibility
|
||
|
# with all versions of Cargo and also rewrite `path` dependencies
|
||
|
# to registry (e.g., crates.io) dependencies.
|
||
|
#
|
||
|
# If you are reading this file be aware that the original Cargo.toml
|
||
|
# will likely look very different (and much more reasonable).
|
||
|
# See Cargo.toml.orig for the original contents.
|
||
|
|
||
|
[package]
|
||
|
edition = "2018"
|
||
|
name = "cobs"
|
||
|
version = "0.2.3"
|
||
|
authors = [
|
||
|
"Allen Welkie <>",
|
||
|
"James Munns <james.munns@ferrous-systems.com>",
|
||
|
]
|
||
|
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. """
|
||
|
keywords = [
|
||
|
"consistent",
|
||
|
"overhead",
|
||
|
"byte",
|
||
|
"stuffing",
|
||
|
]
|
||
|
license = "MIT OR Apache-2.0"
|
||
|
repository = "https://github.com/jamesmunns/cobs.rs"
|
||
|
|
||
|
[dependencies.core]
|
||
|
version = "1.0.0"
|
||
|
optional = true
|
||
|
package = "rustc-std-workspace-core"
|
||
|
|
||
|
[dependencies.compiler_builtins]
|
||
|
version = "0.1"
|
||
|
optional = true
|
||
|
|
||
|
[dev-dependencies.quickcheck]
|
||
|
version = "^0.5.0"
|
||
|
|
||
|
[features]
|
||
|
default = ["use_std"]
|
||
|
use_std = []
|
||
|
rustc-dep-of-std = [
|
||
|
"core",
|
||
|
"compiler_builtins",
|
||
|
]
|