raptorq/Cargo.toml
Christopher Berner 623e651615 Implement decoding phase 1
However, there are at least two potential bugs with the graph
construction and the calculation of "original degree"
2019-02-02 19:22:39 -08:00

27 lines
431 B
TOML

[package]
name = "raptorq"
description = "RaptorQ (RFC6330)"
license = "Apache-2.0"
version = "0.2.0"
authors = ["Christopher Berner <christopherberner@gmail.com>"]
[dependencies]
primal = "0.2"
petgraph = "0.4"
[dev-dependencies]
criterion = "0.2"
rand = "0.6"
[[bench]]
name = "codec_benchmark"
harness = false
[[bin]]
name = "matrix_sparsity"
path = "src/bin_matrix_sparsity.rs"
test = false
[profile.release]
debug = true