mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 19:51:05 +00:00
6da9f59d72
* primitives/sr-std -> primitives/std * fix * fix conflict * rstd -> sp-std * git mv * fix review * fix merge
22 lines
581 B
TOML
22 lines
581 B
TOML
[package]
|
|
name = "sp-authorship"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Authorship primitives"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
sp-inherents = { path = "../inherents", default-features = false }
|
|
sp-runtime = { path = "../runtime", default-features = false }
|
|
sp-std = { path = "../std", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"codec/std",
|
|
"sp-std/std",
|
|
"sp-inherents/std",
|
|
"sp-runtime/std",
|
|
]
|