Files
pezkuwi-subxt/polkadot/Cargo.toml
T
Robert Habermeier a05d422a55 Initial erasure-coding of availability data (#56)
* erasure-coding block data

* adjust error handling

* merkleize chunks and yield branches for each

* construction and proving of merkle branches

* port over to new GF(2^16) impl

* some tests for wrapped_shard

* handle extra byte from GF(2^16) better

* point to github dependency

* add issue link

* point to master for reed-solomon-erasure

* add missing license header
2019-01-24 12:31:22 -03:00

49 lines
809 B
TOML

[[bin]]
name = "polkadot"
path = "src/main.rs"
[package]
name = "polkadot"
version = "0.3.0"
authors = ["Parity Technologies <admin@parity.io>"]
build = "build.rs"
[dependencies]
error-chain = "0.12"
polkadot-cli = { path = "cli" }
futures = "0.1"
ctrlc = { git = "https://github.com/paritytech/rust-ctrlc.git" }
[build-dependencies]
vergen = "0.1"
[workspace]
members = [
"availability-store",
"cli",
"collator",
"consensus",
"erasure-coding",
"executor",
"network",
"primitives",
"runtime",
"service",
"statement-table",
"service",
"test-parachains/adder",
"test-parachains/adder/collator",
]
exclude = [
"runtime/wasm",
"test-parachains/adder/wasm",
]
[badges]
maintenance = { status = "actively-developed" }
[profile.release]
# Polkadot runtime requires unwinding.
panic = "unwind"