[package]
edition = "2024"
rust-version = "1.91"
name = "wire-repr"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A no_std, no_alloc Rust library for wire representations."
homepage = "https://github.com/SilentBless/wire-repr-rs"
documentation = "https://docs.rs/wire-repr"
readme = "README.md"
keywords = [
"binary",
"zero-copy",
"no-std",
"no-alloc",
"codegen",
]
categories = [
"encoding",
"no-std",
"no-std::no-alloc",
]
license = "MIT"
repository = "https://github.com/SilentBless/wire-repr-rs"
[features]
default = []
[lib]
name = "wire_repr"
path = "src/lib.rs"
[[test]]
name = "bit_projections"
path = "tests/bit_projections.rs"
[[test]]
name = "bounded_regions"
path = "tests/bounded_regions.rs"
[[test]]
name = "codec"
path = "tests/codec.rs"
[[test]]
name = "codegen"
path = "tests/codegen.rs"
[[test]]
name = "consumer_formats"
path = "tests/consumer_formats.rs"
[[test]]
name = "dynamic_sequential_builders"
path = "tests/dynamic_sequential_builders.rs"
[[test]]
name = "dynamic_sequential_writes"
path = "tests/dynamic_sequential_writes.rs"
[[test]]
name = "fixed_absolute"
path = "tests/fixed_absolute.rs"
[[test]]
name = "fixed_absolute_writes"
path = "tests/fixed_absolute_writes.rs"
[[test]]
name = "fixed_bytes"
path = "tests/fixed_bytes.rs"
[[test]]
name = "fixed_sequential"
path = "tests/fixed_sequential.rs"
[[test]]
name = "fixed_sequential_writes"
path = "tests/fixed_sequential_writes.rs"
[[test]]
name = "implicit_placement"
path = "tests/implicit_placement.rs"
[[test]]
name = "mappings"
path = "tests/mappings.rs"
[[test]]
name = "padding_alignment"
path = "tests/padding_alignment.rs"
[[test]]
name = "prefix_sequential"
path = "tests/prefix_sequential.rs"
[[test]]
name = "remainder"
path = "tests/remainder.rs"
[[test]]
name = "scalars"
path = "tests/scalars.rs"
[dependencies.wire-repr-macros]
version = "0.2.2"
[lints.rust]
unsafe_code = "deny"