mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 05:38:00 +00:00
79feb23a22
* refactor sr_primitives. * Fix try build error. * Line-width * Ui test. * Final fixes. * Fix build again. * bring back ui test. * Fix unsigned import. * Another ui fix. * Also refactor substrate-primitives * Fix benchmarks. * Fix doc test. * fix doc tests
27 lines
896 B
TOML
27 lines
896 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 }
|
|
parity-codec = { version = "4.1.1", default-features = false }
|
|
schnorrkel = { version = "0.1.1", optional = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"rstd/std",
|
|
"sr-primitives/std",
|
|
"substrate-client/std",
|
|
"parity-codec/std",
|
|
"schnorrkel",
|
|
"slots",
|
|
]
|