[package]
edition = "2021"
rust-version = "1.89"
name = "rlnc-simdx"
version = "1.3.0"
authors = ["arryboom"]
build = false
include = [
"src/**",
"Cargo.toml",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SIMD-accelerated Random Linear Network Coding over GF(2^8) — no_std, maximum SIMD"
readme = "README.md"
keywords = [
"rlnc",
"network-coding",
"simd",
"galois-field",
"no-std",
]
categories = [
"algorithms",
"encoding",
"no-std",
]
license = "Apache-2.0"
repository = "https://github.com/arryboom/rlnc-simdx"
[features]
alloc = []
bench-internals = []
default = [
"alloc",
"std",
]
std = ["alloc"]
[lib]
name = "rlnc_simdx"
path = "src/lib.rs"
[dependencies]
[dev-dependencies]