[package]
edition = "2024"
name = "msrt"
version = "0.1.7"
authors = ["Atlas Orein <gamesworldcraft@gamil.com>"]
build = false
include = [
"Cargo.toml",
"LICENSE",
"README.md",
"ROADMAP.md",
"SPEC.md",
"benches/**",
"examples/**",
"src/**",
"tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Portable MSRT protocol implementation."
documentation = "https://docs.rs/msrt"
readme = "README.md"
keywords = [
"serial",
"transport",
"protocol",
"no-std",
"embedded",
]
categories = [
"embedded",
"network-programming",
"no-std",
]
license = "Apache-2.0"
repository = "https://github.com/atlas-orien/msrt"
[features]
default = ["std"]
dynamic-recovery = []
std = []
tracing = ["dep:tracing"]
[lib]
name = "msrt"
path = "src/lib.rs"
[[example]]
name = "mcu"
path = "examples/mcu.rs"
[[example]]
name = "std_client"
path = "examples/std_client.rs"
[[example]]
name = "std_server"
path = "examples/std_server.rs"
[[test]]
name = "ack_debug_loopback"
path = "tests/ack_debug_loopback.rs"
[[test]]
name = "protocol_boundary"
path = "tests/protocol_boundary.rs"
[[test]]
name = "reliable_simulation"
path = "tests/reliable_simulation.rs"
[[bench]]
name = "poll"
path = "benches/poll.rs"
harness = false
[[bench]]
name = "protocol"
path = "benches/protocol.rs"
harness = false
[dependencies.tracing]
version = "0.1"
optional = true
[dev-dependencies.criterion]
version = "0.8"