fast_hamming 0.1.0

A library that provides functions to encode/decode 16-byte byte-arrays using a Hamming Code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "fast_hamming"
version = "0.1.0"
edition = "2021"
authors = ["Janik Witzig <janik.witzig@bluewin.ch>"]
description = "A library that provides functions to encode/decode 16-byte byte-arrays using a Hamming Code"
repository = "https://gitlab.com/janikwitzig/fast_hamming"
keywords = ["error-correction", "ecc"]
license = "Apache-2.0"
license-file = "LICENSE.txt"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[profile.release]
opt-level = "z"

[dev-dependencies]
rand = "0.8.5"