mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 12:17:58 +00:00
8e95a3e1aa
Working towards migrating the `parity-bridges-common` repo inside `polkadot-sdk`. This PR upgrades some dependencies in order to align them with the versions used in `parity-bridges-common` Related to https://github.com/paritytech/parity-bridges-common/issues/2538
31 lines
1.4 KiB
TOML
31 lines
1.4 KiB
TOML
[package]
|
|
name = "cumulus-client-parachain-inherent"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "Inherent that needs to be present in every parachain block. Contains messages and a relay chain storage-proof."
|
|
license = "Apache-2.0"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.79"
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"] }
|
|
scale-info = { version = "2.11.1", features = ["derive"] }
|
|
tracing = { version = "0.1.37" }
|
|
|
|
# Substrate
|
|
sc-client-api = { path = "../../../substrate/client/api" }
|
|
sp-api = { path = "../../../substrate/primitives/api" }
|
|
sp-crypto-hashing = { path = "../../../substrate/primitives/crypto/hashing" }
|
|
sp-inherents = { path = "../../../substrate/primitives/inherents" }
|
|
sp-runtime = { path = "../../../substrate/primitives/runtime" }
|
|
sp-state-machine = { path = "../../../substrate/primitives/state-machine" }
|
|
sp-std = { path = "../../../substrate/primitives/std" }
|
|
sp-storage = { path = "../../../substrate/primitives/storage" }
|
|
sp-trie = { path = "../../../substrate/primitives/trie" }
|
|
|
|
# Cumulus
|
|
cumulus-primitives-core = { path = "../../primitives/core" }
|
|
cumulus-primitives-parachain-inherent = { path = "../../primitives/parachain-inherent" }
|
|
cumulus-relay-chain-interface = { path = "../relay-chain-interface" }
|
|
cumulus-test-relay-sproof-builder = { path = "../../test/relay-sproof-builder" }
|