From 335961c520085ee305e011343ed0cdb51a0048be Mon Sep 17 00:00:00 2001 From: Benjamin Kampmann Date: Wed, 8 Apr 2020 11:30:34 +0200 Subject: [PATCH] Update to upstream reed-solomon-erasure (#978) --- polkadot/Cargo.lock | 7 ++++--- polkadot/erasure-coding/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/polkadot/Cargo.lock b/polkadot/Cargo.lock index c1cb0617f5..a73a67b601 100644 --- a/polkadot/Cargo.lock +++ b/polkadot/Cargo.lock @@ -5108,10 +5108,11 @@ dependencies = [ [[package]] name = "reed-solomon-erasure" -version = "4.0.0" -source = "git+https://github.com/paritytech/reed-solomon-erasure#63c609beaef0f8174a9a21f058d7d3e46c3a762c" +version = "4.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a415a013dd7c5d4221382329a5a3482566da675737494935cbbbcdec04662f9d" dependencies = [ - "smallvec 0.6.13", + "smallvec 1.2.0", ] [[package]] diff --git a/polkadot/erasure-coding/Cargo.toml b/polkadot/erasure-coding/Cargo.toml index 4355181796..3f1c6a78ad 100644 --- a/polkadot/erasure-coding/Cargo.toml +++ b/polkadot/erasure-coding/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] primitives = { package = "polkadot-primitives", path = "../primitives" } -reed_solomon = { package = "reed-solomon-erasure", git = "https://github.com/paritytech/reed-solomon-erasure" } +reed_solomon = { package = "reed-solomon-erasure", version = "4.0.2"} codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] } sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master" }