[package]
edition = "2021"
rust-version = "1.96"
name = "viterbi"
version = "0.2.0"
authors = ["BolivarTech <jbolivarg@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust, no-unsafe convolutional encoder + Viterbi (MLSE) decoder — CCSDS inner FEC: hard & soft-decision (LLR), rate 1/2 & 1/3, puncturing (2/3–7/8), generic constraint length K<=9."
homepage = "https://github.com/BolivarTech/viterbi-rs"
documentation = "https://docs.rs/viterbi"
readme = "README.md"
keywords = [
"viterbi",
"convolutional",
"fec",
"ccsds",
]
categories = [
"algorithms",
"encoding",
"science",
"embedded",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/BolivarTech/viterbi-rs"
[lib]
name = "viterbi"
path = "src/lib.rs"
[[example]]
name = "ber_curve"
path = "examples/ber_curve.rs"
[[example]]
name = "roundtrip"
path = "examples/roundtrip.rs"
[[test]]
name = "ber_anchor"
path = "tests/ber_anchor.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "generic_k"
path = "tests/generic_k.rs"
[[test]]
name = "generic_state"
path = "tests/generic_state.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[test]]
name = "puncturing"
path = "tests/puncturing.rs"
[[test]]
name = "rate_1_3"
path = "tests/rate_1_3.rs"
[[test]]
name = "reference_vectors"
path = "tests/reference_vectors.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "soft_decision"
path = "tests/soft_decision.rs"
[dependencies]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.rand]
version = "=0.8.5"
[lints.rust]
unsafe_code = "forbid"