[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"
[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]
feat-log = ["dep:log"]