[dependencies]
[dev-dependencies.clap]
features = ["derive"]
version = "4.5.16"
[dev-dependencies.serialport]
version = "4.5.0"
[dev-dependencies.virtual-serialport]
version = "=0.1.1"
[[example]]
name = "esp32_send"
path = "examples/esp32_send.rs"
[[example]]
name = "pc_receive"
path = "examples/pc_receive.rs"
[lib]
name = "simp_protocol"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = "simp_protocol is a simplistic protocol to communicate over serial ports. It supports ack, automated escaping and unescaping of special bytes and checksum error detection."
edition = "2021"
keywords = ["messaging", "uart", "serial"]
license = "MIT"
name = "simp_protocol"
readme = "README.md"
version = "0.2.0"
[[test]]
name = "test_sbt"
path = "tests/test_sbt.rs"
[[test]]
name = "test_uart"
path = "tests/test_uart.rs"