mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 22:41:06 +00:00
Fixup package releasing (#5821)
Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
c0daa9a47c
commit
bb94695a4e
@@ -6,6 +6,7 @@ edition = "2018"
|
|||||||
license = "GPL-3.0"
|
license = "GPL-3.0"
|
||||||
homepage = "https://substrate.dev"
|
homepage = "https://substrate.dev"
|
||||||
repository = "https://github.com/paritytech/substrate/"
|
repository = "https://github.com/paritytech/substrate/"
|
||||||
|
description = "Collection of common consensus specific imlementations for Substrate (client)"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
targets = ["x86_64-unknown-linux-gnu"]
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
|
|||||||
@@ -13,7 +13,8 @@
|
|||||||
|
|
||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with Substrate. If not, see <http://www.gnu.org/licenses/>.
|
// along with Substrate. If not, see <http://www.gnu.org/licenses/>.
|
||||||
//! Collection of consensus specific imlementations
|
|
||||||
|
//! Collection of common consensus specific implementations
|
||||||
mod longest_chain;
|
mod longest_chain;
|
||||||
|
|
||||||
pub use longest_chain::LongestChain;
|
pub use longest_chain::LongestChain;
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ test-helpers = []
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
derive_more = "0.99.2"
|
derive_more = "0.99.2"
|
||||||
futures01 = { package = "futures", version = "0.1.29" }
|
futures01 = { package = "futures", version = "0.1.29" }
|
||||||
futures = "0.3.4"
|
futures = { version = "0.3.4", features = ["compat"] }
|
||||||
rand = "0.7.3"
|
rand = "0.7.3"
|
||||||
parking_lot = "0.10.0"
|
parking_lot = "0.10.0"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ repository = "https://github.com/paritytech/substrate/"
|
|||||||
targets = ["x86_64-unknown-linux-gnu"]
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3"
|
futures = { version = "0.3", features = ["compat"] }
|
||||||
futures01 = { package = "futures", version = "0.1.29" }
|
futures01 = { package = "futures", version = "0.1.29" }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
libp2p-wasm-ext = { version = "0.18.0", features = ["websocket"] }
|
libp2p-wasm-ext = { version = "0.18.0", features = ["websocket"] }
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
sc-client-api = { version = "2.0.0-dev", path = "../../../../client/api" }
|
sc-client-api = { version = "2.0.0-dev", path = "../../../../client/api" }
|
||||||
codec = { package = "parity-scale-codec", version = "1.3.0" }
|
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 = "14.0.3"
|
||||||
jsonrpc-core-client = "14.0.5"
|
jsonrpc-core-client = "14.0.5"
|
||||||
jsonrpc-derive = "14.0.3"
|
jsonrpc-derive = "14.0.3"
|
||||||
|
|||||||
Reference in New Issue
Block a user