mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 04:28:01 +00:00
d4c19c0652
* Limit number of uncles that can be provided. * Check length of uncles vector on inherent. * Set fatal error to true for too many uncles. * Take max uncles in create_inherent.
21 lines
649 B
TOML
21 lines
649 B
TOML
[package]
|
|
name = "sp-authorship"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Authorship primitives"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
sp-inherents = { package = "sp-inherents", path = "../inherents", default-features = false }
|
|
sr-primitives = { package = "sp-runtime", path = "../sr-primitives", default-features = false }
|
|
rstd = { package = "sp-std", path = "../sr-std", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"codec/std",
|
|
"rstd/std",
|
|
"sp-inherents/std",
|
|
]
|