secure-serial 0.1.0

Reliable CRC-framed serial protocol with chunked packets and ACKs for no_std + Embassy
Documentation
# 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 = "2024"
rust-version = "1.85"
name = "secure-serial"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reliable CRC-framed serial protocol with chunked packets and ACKs for no_std + Embassy"
documentation = "https://docs.rs/secure-serial"
readme = "README.md"
keywords = [
    "serial",
    "uart",
    "embassy",
    "embedded",
    "no-std",
]
categories = [
    "embedded",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/martin2250/secure-serial"

[features]
default = []
defmt = ["dep:defmt"]

[lib]
name = "secure_serial"
path = "src/lib.rs"

[[example]]
name = "simple"
path = "examples/simple.rs"

[[test]]
name = "fault_injection"
path = "tests/fault_injection.rs"

[dependencies.defmt]
version = "1"
optional = true

[dependencies.embassy-futures]
version = "0.1"

[dependencies.embassy-sync]
version = "0.8"

[dependencies.embassy-time]
version = "0.5"

[dependencies.embedded-buffer-pool]
version = "0.2.0"

[dependencies.heapless]
version = "0.9"

[dev-dependencies.crc]
version = "3.4"

[dev-dependencies.critical-section]
version = "1.2"
features = ["std"]

[dev-dependencies.embassy-sync]
version = "0.8"
features = ["std"]

[dev-dependencies.embassy-time]
version = "0.5"
features = [
    "std",
    "generic-queue-64",
]

[dev-dependencies.static_cell]
version = "2"

[dev-dependencies.tokio]
version = "1"
features = ["full"]