[package]
edition = "2021"
name = "fec"
version = "0.2.0"
authors = ["Brian Armstrong <brian.armstrong.ece+github@gmail.com>"]
build = false
include = [
"src/**/*.rs",
"examples/**/*.rs",
"benches/**/*.rs",
"README.md",
"CONTRIBUTING.md",
"LICENSE",
"Cargo.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Forward error correction for SDR, space, and satellite: convolutional (Viterbi) and Reed-Solomon codes, including the CCSDS (255,223) standard in both conventional and dual-basis representations."
readme = "README.md"
keywords = [
"fec",
"reed-solomon",
"viterbi",
"ccsds",
"sdr",
]
categories = [
"encoding",
"science",
]
license = "BSD-3-Clause"
repository = "https://github.com/brian-armstrong/fec"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
simd = []
[lib]
name = "fec"
path = "src/lib.rs"
[[bin]]
name = "find_conv_optim_poly"
path = "src/bin/find_conv_optim_poly.rs"
[[bin]]
name = "find_rs_primitive_poly"
path = "src/bin/find_rs_primitive_poly.rs"
[[bin]]
name = "throughput"
path = "src/bin/throughput.rs"
required-features = ["simd"]
[[example]]
name = "error_correction"
path = "examples/error_correction.rs"
[[example]]
name = "main"
path = "examples/main.rs"
[[example]]
name = "reed_solomon"
path = "examples/reed_solomon.rs"
[[bench]]
name = "decode_throughput"
path = "benches/decode_throughput.rs"
harness = false
required-features = ["simd"]
[dependencies]
[dev-dependencies.criterion]
version = "0.5"
features = ["cargo_bench_support"]
default-features = false
[profile.profiling]
debug = 2
inherits = "release"
strip = false
[profile.release]
lto = true
codegen-units = 1
strip = "debuginfo"