raptor-code 1.0.9

A Rust library for implementing Forward Error Correction (FEC) using Raptor codes.
Documentation
[package]
name = "raptor-code"
version = "1.0.9"
edition = "2021"
rust-version = "1.71.0"
authors = ["Yannick Poirier <contact@yannickpoirier.fr>"]
description = "A Rust library for implementing Forward Error Correction (FEC) using Raptor codes."
homepage = "https://github.com/ypo/raptor"
repository = "https://github.com/ypo/raptor"
keywords = ["fec", "network", "5g", "satellite"]
categories = ["network-programming", "encoding", "aerospace::space-protocols"]
license = "MIT"

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

[lib]
name = "raptor_code"
path = "src/lib.rs"

[[bench]]
name = "encode"
harness = false

[dependencies]
log = { version = "0.4", optional = true }
primes = "0.4.0"

[dev-dependencies]
env_logger = "0.11"
log = "0.4"
rand = "0.9"
criterion = "0.5"

[features]
# Optional logging feature
feat-log = ["dep:log"]