mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-18 06:01:02 +00:00
5eb816d7a6
* Start * More work! * Moar * More changes * More fixes * More worrk * More fixes * More fixes to make it compile * Adds `NoOffchainStorage` * Pass the extensions * Small basti making small progress * Fix merge errors and remove `ExecutionContext` * Move registration of `ReadRuntimeVersionExt` to `ExecutionExtension` Instead of registering `ReadRuntimeVersionExt` in `sp-state-machine` it is moved to `ExecutionExtension` which provides the default extensions. * Fix compilation * Register the global extensions inside runtime api instance * Fixes * Fix `generate_initial_session_keys` by passing the keystore extension * Fix the grandpa tests * Fix more tests * Fix more tests * Don't set any heap pages if there isn't an override * Fix small fallout * FMT * Fix tests * More tests * Offchain worker custom extensions * More fixes * Make offchain tx pool creation reusable Introduces an `OffchainTransactionPoolFactory` for creating offchain transactions pools that can be registered in the runtime externalities context. This factory will be required for a later pr to make the creation of offchain transaction pools easier. * Fixes * Fixes * Set offchain transaction pool in BABE before using it in the runtime * Add the `offchain_tx_pool` to Grandpa as well * Fix the nodes * Print some error when using the old warnings * Fix merge issues * Fix compilation * Rename `babe_link` * Rename to `offchain_tx_pool_factory` * Cleanup * FMT * Fix benchmark name * Fix `try-runtime` * Remove `--execution` CLI args * Make clippy happy * Forward bls functions * Fix docs * Update UI tests * Update client/api/src/execution_extensions.rs Co-authored-by: Michal Kucharczyk <1728078+michalkucharczyk@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Koute <koute@users.noreply.github.com> * Update client/cli/src/params/import_params.rs Co-authored-by: Koute <koute@users.noreply.github.com> * Update client/api/src/execution_extensions.rs Co-authored-by: Koute <koute@users.noreply.github.com> * Pass the offchain storage to the MMR RPC * Update client/api/src/execution_extensions.rs Co-authored-by: Sebastian Kunert <skunert49@gmail.com> * Review comments * Fixes --------- Co-authored-by: Michal Kucharczyk <1728078+michalkucharczyk@users.noreply.github.com> Co-authored-by: Koute <koute@users.noreply.github.com> Co-authored-by: Sebastian Kunert <skunert49@gmail.com>
62 lines
3.0 KiB
TOML
62 lines
3.0 KiB
TOML
[package]
|
|
name = "sc-consensus-grandpa"
|
|
version = "0.10.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Integration of the GRANDPA finality gadget into substrate."
|
|
documentation = "https://docs.rs/sc-consensus-grandpa"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
ahash = "0.8.2"
|
|
array-bytes = "6.1"
|
|
async-trait = "0.1.57"
|
|
dyn-clone = "1.0"
|
|
finality-grandpa = { version = "0.16.2", features = ["derive-codec"] }
|
|
futures = "0.3.21"
|
|
futures-timer = "3.0.1"
|
|
log = "0.4.17"
|
|
parity-scale-codec = { version = "3.6.1", features = ["derive"] }
|
|
parking_lot = "0.12.1"
|
|
rand = "0.8.5"
|
|
serde_json = "1.0.85"
|
|
thiserror = "1.0"
|
|
fork-tree = { version = "3.0.0", path = "../../../utils/fork-tree" }
|
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../../utils/prometheus" }
|
|
sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" }
|
|
sc-chain-spec = { version = "4.0.0-dev", path = "../../../client/chain-spec" }
|
|
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
|
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../transaction-pool/api" }
|
|
sc-consensus = { version = "0.10.0-dev", path = "../common" }
|
|
sc-network = { version = "0.10.0-dev", path = "../../network" }
|
|
sc-network-gossip = { version = "0.10.0-dev", path = "../../network-gossip" }
|
|
sc-network-common = { version = "0.10.0-dev", path = "../../network/common" }
|
|
sc-telemetry = { version = "4.0.0-dev", path = "../../telemetry" }
|
|
sc-utils = { version = "4.0.0-dev", path = "../../utils" }
|
|
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
|
sp-application-crypto = { version = "23.0.0", path = "../../../primitives/application-crypto" }
|
|
sp-arithmetic = { version = "16.0.0", path = "../../../primitives/arithmetic" }
|
|
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
|
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
|
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
|
sp-consensus-grandpa = { version = "4.0.0-dev", path = "../../../primitives/consensus/grandpa" }
|
|
sp-keystore = { version = "0.27.0", path = "../../../primitives/keystore" }
|
|
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.3.0"
|
|
finality-grandpa = { version = "0.16.2", features = ["derive-codec", "test-helpers"] }
|
|
serde = "1.0.163"
|
|
tokio = "1.22.0"
|
|
sc-network = { version = "0.10.0-dev", path = "../../network" }
|
|
sc-network-test = { version = "0.8.0", path = "../../network/test" }
|
|
sp-keyring = { version = "24.0.0", path = "../../../primitives/keyring" }
|
|
sp-tracing = { version = "10.0.0", path = "../../../primitives/tracing" }
|
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|