byteable 0.2.0

A Rust crate for convenient serialization and deserialization of byte-oriented data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "byteable"
version = "0.2.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/PaulDepping/byteable"
description = "A Rust crate for convenient serialization and deserialization of byte-oriented data."
readme = "README.md"

[features]
all = ["derive", "tokio"]
default = []
derive = ["dep:byteable_derive"]
tokio = ["dep:tokio"]

[dependencies]
byteable_derive = { version = "0.1.0", path = "byteable_derive", optional = true }
tokio = { version = "1", features = ["full"], optional = true }