mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 14:27:57 +00:00
a9c21b8b84
* slots: create primitives crate for consensus slots * offences: add method to check if an offence is unknown * babe: initial equivocation reporting implementation * babe: organize imports * babe: working equivocation reporting * babe: add slot number to equivocation proof * session: move duplicate traits to session primitives * babe: move equivocation stuff to its own file * offences: fix test * session: don't have primitives depend on frame_support * babe: use opaque type for key owner proof * babe: cleanup client equivocation reporting * babe: cleanup equivocation code in pallet * babe: allow sending signed equivocation reports * node: fix compilation * fix test compilation * babe: return bool on check_equivocation_proof * babe: add test for equivocation reporting * babe: add more tests * babe: add test for validate unsigned * babe: take slot number in generate_key_ownership_proof API * babe: add benchmark for equivocation proof checking * session: add benchmark for membership proof checking * offences: fix babe benchmark * babe: add weights based on benchmark results * babe: adjust weights after benchmarking on reference hardware * babe: reorder checks in check_and_report_equivocation
44 lines
1.6 KiB
TOML
44 lines
1.6 KiB
TOML
[package]
|
|
name = "sp-consensus-babe"
|
|
version = "0.8.0-rc4"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Primitives for BABE consensus"
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
sp-application-crypto = { version = "2.0.0-rc4", default-features = false, path = "../../application-crypto" }
|
|
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
|
|
merlin = { version = "2.0", default-features = false }
|
|
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../std" }
|
|
sp-api = { version = "2.0.0-rc4", default-features = false, path = "../../api" }
|
|
sp-consensus = { version = "0.8.0-rc4", optional = true, path = "../common" }
|
|
sp-consensus-slots = { version = "0.8.0-rc4", default-features = false, path = "../slots" }
|
|
sp-consensus-vrf = { version = "0.8.0-rc4", path = "../vrf", default-features = false }
|
|
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../core" }
|
|
sp-inherents = { version = "2.0.0-rc4", default-features = false, path = "../../inherents" }
|
|
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../runtime" }
|
|
sp-timestamp = { version = "2.0.0-rc4", default-features = false, path = "../../timestamp" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"sp-application-crypto/std",
|
|
"codec/std",
|
|
"merlin/std",
|
|
"sp-std/std",
|
|
"sp-api/std",
|
|
"sp-consensus",
|
|
"sp-consensus-slots/std",
|
|
"sp-consensus-vrf/std",
|
|
"sp-core/std",
|
|
"sp-inherents/std",
|
|
"sp-runtime/std",
|
|
"sp-timestamp/std",
|
|
]
|