mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-28 01:41:06 +00:00
8de663f105
* Adds new `check_inherents` function to the `BlockBuilder` API * Switch to `check_inherents` in `node-consensus` * Remove `CheckedBlock`, because it is not required anymore * Fixes after rebase * Fixes compilation on stable
22 lines
582 B
TOML
22 lines
582 B
TOML
[package]
|
|
name = "sr-api"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
parity-codec = { version = "2.0", default-features = false }
|
|
parity-codec-derive = { version = "2.1", default-features = false }
|
|
sr-std = { path = "../sr-std", default-features = false }
|
|
sr-primitives = { path = "../sr-primitives", default-features = false }
|
|
sr-version = { path = "../sr-version", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"sr-std/std",
|
|
"parity-codec/std",
|
|
"parity-codec-derive/std",
|
|
"sr-primitives/std",
|
|
"sr-version/std",
|
|
]
|