1
Fork 0
framed-rs/decode/Cargo.toml
Alex Helfet a002289f95 Sub-crate descriptions.
Closes #10.
2017-12-27 19:20:20 +00:00

32 lines
884 B
TOML

[package]
name = "framed_decode"
version = "0.1.0"
authors = ["Alex Helfet <alex.helfet@gmail.com>"]
description = """`framed` sends and receives data over lossy streams of bytes.
`framed_decode` is a command line tool to decode data encoded by the `framed` library.
"""
categories = ["no-std", "embedded", "encoding", "network-programming"]
keywords = ["no_std", "networking", "datalink", "protocol", "embedded"]
readme = "../README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/fluffysquirrels/framed-rs"
[badges.travis-ci]
repository = "fluffysquirrels/framed-rs"
branch = "master"
[dependencies]
clap = "^2.29.0"
derive-error = "^0.0.4"
framed = { path = "../framed" }
framed_test_type = { path = "../test_type" }
[features]
default = ["typed"]
# Enable to print all data to stdout for testing.
trace = ["framed/trace"]
# TODO.
typed = ["framed/typed"]