mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 08:07:58 +00:00
c9c0ad4756
* core/network: Fix bad import %s/runtime_primitives/sr_primitives/ * Cargo.lock: Update consensus-common-primitives parity-codec version * core/consensus/common: Remove obsolete package path
22 lines
643 B
TOML
22 lines
643 B
TOML
[package]
|
|
name = "substrate-consensus-common-primitives"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Common consensus primitives"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
parity-codec = { version = "4.1.1", default-features = false }
|
|
client = { package = "substrate-client", path = "../../../client", default-features = false }
|
|
sr-primitives = { path = "../../../sr-primitives", default-features = false }
|
|
rstd = { package = "sr-std", path = "../../../sr-std", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"rstd/std",
|
|
"client/std",
|
|
"parity-codec/std",
|
|
"sr-primitives/std"
|
|
]
|