mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-15 16:11:05 +00:00
8b89c7ae62
* update parity-scale codec minor version * update to 3.5.3 * update locks * increase impl version * Update to 3.5.4 * Update WASM lockfiles
24 lines
770 B
TOML
24 lines
770 B
TOML
[package]
|
|
name = "substrate-consensus-aura-primitives"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Primitives for Aura consensus"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
parity-codec = { version = "3.5.4", default-features = false }
|
|
substrate-client = { path = "../../../client", default-features = false }
|
|
substrate-primitives = { path = "../../../primitives", default-features = false }
|
|
rstd = { package = "sr-std", path = "../../../sr-std", default-features = false }
|
|
runtime_primitives = { package = "sr-primitives", path = "../../../sr-primitives", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"rstd/std",
|
|
"parity-codec/std",
|
|
"runtime_primitives/std",
|
|
"substrate-client/std",
|
|
"substrate-primitives/std",
|
|
]
|