mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 16:37:57 +00:00
c1865988df
* grandpa: update notif protocol name * grandpa: add chain id prefix to protocol name * grandpa: beautify protocol name handling * grandpa: prepend genesis hash to protocol name * chain-spec: add optional 'fork_id' 'fork_id' is used to uniquely identify forks of the same chain/network 'ChainSpec' trait provides default 'None' implementation, meaning this chain hasn't been forked. * grandpa: protocol_name mod instead of struct * beefy: add genesis hash prefix to protocol name * chainspec: add fork_id * grandpa: simplify protocol name * grandpa: contain protocol name building logic * beefy: contain protocol name building logic * grandpa: fix tests * fix merge damage * fix docs reference visibility Signed-off-by: acatangiu <adrian@parity.io> * Update client/finality-grandpa/src/lib.rs Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Update client/finality-grandpa/src/communication/mod.rs Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Update client/beefy/src/lib.rs Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Update client/beefy/src/lib.rs Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * avoid using hash default, even for protocol names Co-authored-by: Tomasz Drwięga <tomusdrw@users.noreply.github.com>
43 lines
1.8 KiB
TOML
43 lines
1.8 KiB
TOML
[package]
|
|
name = "beefy-gadget"
|
|
version = "4.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
repository = "https://github.com/paritytech/substrate"
|
|
description = "BEEFY Client gadget for substrate"
|
|
|
|
[dependencies]
|
|
fnv = "1.0.6"
|
|
futures = "0.3"
|
|
log = "0.4"
|
|
parking_lot = "0.11"
|
|
thiserror = "1.0"
|
|
wasm-timer = "0.2.5"
|
|
|
|
codec = { version = "2.2.0", package = "parity-scale-codec", features = ["derive"] }
|
|
prometheus = { version = "0.10.0-dev", package = "substrate-prometheus-endpoint", path = "../../utils/prometheus" }
|
|
|
|
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
|
sp-application-crypto = { version = "4.0.0", path = "../../primitives/application-crypto" }
|
|
sp-arithmetic = { version = "4.0.0", path = "../../primitives/arithmetic" }
|
|
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
|
sp-core = { version = "4.1.0-dev", path = "../../primitives/core" }
|
|
sp-keystore = { version = "0.10.0", path = "../../primitives/keystore" }
|
|
sp-runtime = { version = "4.0.0", path = "../../primitives/runtime" }
|
|
|
|
sc-chain-spec = { version = "4.0.0-dev", path = "../../client/chain-spec" }
|
|
sc-utils = { version = "4.0.0-dev", path = "../utils" }
|
|
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
|
sc-keystore = { version = "4.0.0-dev", path = "../keystore" }
|
|
sc-network = { version = "0.10.0-dev", path = "../network" }
|
|
sc-network-gossip = { version = "0.10.0-dev", path = "../network-gossip" }
|
|
|
|
beefy-primitives = { version = "4.0.0-dev", path = "../../primitives/beefy" }
|
|
|
|
[dev-dependencies]
|
|
sp-tracing = { version = "4.0.0", path = "../../primitives/tracing" }
|
|
sc-network-test = { version = "0.8.0", path = "../network/test" }
|
|
|
|
strum = { version = "0.22", features = ["derive"] }
|