Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Initial erasure-coding of availability data #56

Merged
merged 13 commits into from
Jan 24, 2019
20 changes: 20 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ members = [
"cli",
"collator",
"consensus",
"erasure-coding",
"executor",
"network",
"primitives",
Expand Down
12 changes: 12 additions & 0 deletions erasure-coding/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[package]
name = "polkadot-erasure-coding"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"

[dependencies]
polkadot-primitives = { path = "../primitives" }
reed-solomon-erasure = { git = "https://github.com/paritytech/reed-solomon-erasure" }
parity-codec = "2.1"
substrate-primitives = { git = "https://github.com/paritytech/substrate" }
substrate-trie = { git = "https://github.com/paritytech/substrate" }