From 3f50465d4983f2bbafa3c9f79ab4543c43a6dcf1 Mon Sep 17 00:00:00 2001 From: Bernhard Schuster Date: Sat, 27 Mar 2021 09:07:28 +0100 Subject: [PATCH] use novelpoly 1.0.0 (#2727) --- polkadot/Cargo.lock | 4 ++-- polkadot/erasure-coding/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/polkadot/Cargo.lock b/polkadot/Cargo.lock index c80ad0d5e3..b59a1775fd 100644 --- a/polkadot/Cargo.lock +++ b/polkadot/Cargo.lock @@ -6969,9 +6969,9 @@ dependencies = [ [[package]] name = "reed-solomon-novelpoly" -version = "0.0.3" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f11e01a8ef53ec033daf53a9385a1d0bb266155797919096e4134118f45efe82" +checksum = "3bd8f48b2066e9f69ab192797d66da804d1935bf22763204ed3675740cb0f221" dependencies = [ "derive_more", "fs-err", diff --git a/polkadot/erasure-coding/Cargo.toml b/polkadot/erasure-coding/Cargo.toml index 2c041e398a..0ec1995726 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" } -novelpoly = { package = "reed-solomon-novelpoly", version = "=0.0.3" } +novelpoly = { package = "reed-solomon-novelpoly", version = "1.0.0" } parity-scale-codec = { version = "2.0.0", default-features = false, features = ["std", "derive"] } sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master" }