mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 01:41:09 +00:00
394eff6c2f
* Update to schnorrkel `0.8.0` * Increase `spec_version` * Bump schnorrkel to 0.8.3 (#3283) * Schnorrkel 0.8.1 (builds on bkchr upgrade branch) * Add tests for known hard/soft derivation values * Bump all schnorrkel versions * Flatten for easier inspection * 0.8.2 * 0.8.3 * Update subkey/Cargo.toml Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com> * Update `Cargo.lock` * 0.8.4 * Fix cargo lock file. * Adding an error message for `NotMarkedSchnorrkel` as that was missing. Also fixing a typo, strage -> stage.
27 lines
950 B
TOML
27 lines
950 B
TOML
[package]
|
|
name = "substrate-consensus-babe-primitives"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Primitives for BABE consensus"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
substrate-client = { path = "../../../client", default-features = false }
|
|
rstd = { package = "sr-std", path = "../../../sr-std", default-features = false }
|
|
sr-primitives = { path = "../../../sr-primitives", default-features = false }
|
|
primitives = { package = "substrate-primitives", path = "../../../primitives", default-features = false }
|
|
slots = { package = "substrate-consensus-slots", path = "../../slots", optional = true }
|
|
schnorrkel = { version = "0.8.4", features = ["preaudit_deprecated"], optional = true }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"rstd/std",
|
|
"sr-primitives/std",
|
|
"substrate-client/std",
|
|
"codec/std",
|
|
"schnorrkel",
|
|
"slots",
|
|
]
|