byte-chisel 0.2.1

A library for decoding byte-streams into data structures
Documentation
[package]
name = "byte-chisel"
description = "A library for decoding byte-streams into data structures"
categories = [ "encoding" ]
version = "0.2.1"
edition = "2024"
repository = "https://codeberg.org/Fayti1703/byte-chisel"
license = "EUPL-1.2"
readme = "README.md"

[lints]
clippy.tabs_in_doc_comments = "allow"
clippy.undocumented_unsafe_blocks = "deny"
rust.unsafe_op_in_unsafe_fn = "deny"


[features]
default = [ "std" ]
alloc = [ "dep:memchr" ]
std = [ "alloc" ]

[dependencies]
memchr = { version = "2.7", optional = true }