Crates.io | slip-codec |
lib.rs | slip-codec |
version | 0.4.0 |
source | src |
created_at | 2020-06-26 18:33:57.808473 |
updated_at | 2023-10-27 22:34:21.991279 |
description | Serial Line Internet Protocol (SLIP) encoder/decoder |
homepage | |
repository | https://github.com/jmaygarden/slip-codec |
max_upload_size | |
id | 258478 |
size | 52,780 |
SLIP encoder/decoder with Rust std::io::{Read, Write} interfaces.
Pure Rust implementation of RFC 1055 Serial Line Internet Protocol (SLIP). Test cases are lifted from the serial_line_ip crate that serves the same role, but uses slices for data handling.
Asynchronous interfaces are optionally provided in addition to the default synchronous interface.
async-codec
— Implements runtime agnostic asynchronous_codec traitstokio-codec
— Implements tokio runtime tokio_util::codec traits