mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-18 18:51:02 +00:00
303843f483
* Split Aura and Timestamp inherents out of paint * fixup node depedencies * move babe inherents to primitives * move authorship inherents into primitives * Move finalty tracker inherents into primitives * fix aura primitives import
20 lines
560 B
TOML
20 lines
560 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 = "substrate-inherents", path = "../inherents", default-features = false }
|
|
rstd = { package = "sr-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",
|
|
]
|