From bb94695a4e1508c9128dfe91ef94a558bfa0b257 Mon Sep 17 00:00:00 2001 From: Benjamin Kampmann Date: Wed, 29 Apr 2020 18:44:12 +0200 Subject: [PATCH] Fixup package releasing (#5821) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Bastian Köcher --- substrate/client/consensus/common/Cargo.toml | 1 + substrate/client/consensus/common/src/lib.rs | 5 +++-- substrate/client/service/Cargo.toml | 2 +- substrate/utils/browser/Cargo.toml | 2 +- substrate/utils/frame/rpc/system/Cargo.toml | 2 +- 5 files changed, 7 insertions(+), 5 deletions(-) diff --git a/substrate/client/consensus/common/Cargo.toml b/substrate/client/consensus/common/Cargo.toml index e8854faa07..dae6f341d1 100644 --- a/substrate/client/consensus/common/Cargo.toml +++ b/substrate/client/consensus/common/Cargo.toml @@ -6,6 +6,7 @@ edition = "2018" license = "GPL-3.0" homepage = "https://substrate.dev" repository = "https://github.com/paritytech/substrate/" +description = "Collection of common consensus specific imlementations for Substrate (client)" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/substrate/client/consensus/common/src/lib.rs b/substrate/client/consensus/common/src/lib.rs index 9bfe7e56d4..1d9b072cfe 100644 --- a/substrate/client/consensus/common/src/lib.rs +++ b/substrate/client/consensus/common/src/lib.rs @@ -13,7 +13,8 @@ // You should have received a copy of the GNU General Public License // along with Substrate. If not, see . -//! Collection of consensus specific imlementations + +//! Collection of common consensus specific implementations mod longest_chain; -pub use longest_chain::LongestChain; \ No newline at end of file +pub use longest_chain::LongestChain; diff --git a/substrate/client/service/Cargo.toml b/substrate/client/service/Cargo.toml index 82fdc1ca10..e5f6e229c7 100644 --- a/substrate/client/service/Cargo.toml +++ b/substrate/client/service/Cargo.toml @@ -25,7 +25,7 @@ test-helpers = [] [dependencies] derive_more = "0.99.2" futures01 = { package = "futures", version = "0.1.29" } -futures = "0.3.4" +futures = { version = "0.3.4", features = ["compat"] } rand = "0.7.3" parking_lot = "0.10.0" lazy_static = "1.4.0" diff --git a/substrate/utils/browser/Cargo.toml b/substrate/utils/browser/Cargo.toml index 29211298b7..868f32e34a 100644 --- a/substrate/utils/browser/Cargo.toml +++ b/substrate/utils/browser/Cargo.toml @@ -12,7 +12,7 @@ repository = "https://github.com/paritytech/substrate/" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -futures = "0.3" +futures = { version = "0.3", features = ["compat"] } futures01 = { package = "futures", version = "0.1.29" } log = "0.4.8" libp2p-wasm-ext = { version = "0.18.0", features = ["websocket"] } diff --git a/substrate/utils/frame/rpc/system/Cargo.toml b/substrate/utils/frame/rpc/system/Cargo.toml index a33a9dfd73..7d57e6b988 100644 --- a/substrate/utils/frame/rpc/system/Cargo.toml +++ b/substrate/utils/frame/rpc/system/Cargo.toml @@ -14,7 +14,7 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] sc-client-api = { version = "2.0.0-dev", path = "../../../../client/api" } codec = { package = "parity-scale-codec", version = "1.3.0" } -futures = "0.3.4" +futures = { version = "0.3.4", features = ["compat"] } jsonrpc-core = "14.0.3" jsonrpc-core-client = "14.0.5" jsonrpc-derive = "14.0.3"