packbytes 0.1.0

Convert structures to and from packed representavises - byte arrays of fixed size that live on stack
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "packbytes"
version = "0.1.0"
edition = "2021"
authors = ["Maroš Grego <maros@grego.site>"]
description = "Convert structures to and from packed representavises - byte arrays of fixed size that live on stack"
repository = "https://github.com/grego/packbytes"
keywords = ["packed", "bytes", "endian", "transmute", "binary"]
categories = ["data-structures", "encoding", "no-std::no-alloc", "parsing", "rust-patterns"]
license = "MIT"
readme = "README.md"

[dependencies]
packbytes-derive = { path = "packbytes-derive", version = "0.1", optional = true }

[features]
default = ["packbytes-derive", "std"]
std = []