mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 02:57:57 +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
65 lines
1.9 KiB
TOML
65 lines
1.9 KiB
TOML
[package]
|
|
name = "pallet-migrations"
|
|
version = "1.0.0"
|
|
description = "FRAME pallet to execute multi-block migrations."
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
|
docify = "0.2.8"
|
|
impl-trait-for-tuples = "0.2.2"
|
|
log = "0.4.21"
|
|
scale-info = { version = "2.11.1", default-features = false, features = ["derive"] }
|
|
|
|
frame-benchmarking = { default-features = false, optional = true, path = "../benchmarking" }
|
|
frame-support = { default-features = false, path = "../support" }
|
|
frame-system = { default-features = false, path = "../system" }
|
|
sp-core = { path = "../../primitives/core", default-features = false }
|
|
sp-std = { path = "../../primitives/std", default-features = false }
|
|
sp-runtime = { path = "../../primitives/runtime", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
frame-executive = { path = "../executive" }
|
|
sp-api = { path = "../../primitives/api", features = ["std"] }
|
|
sp-block-builder = { path = "../../primitives/block-builder", features = ["std"] }
|
|
sp-io = { path = "../../primitives/io", features = ["std"] }
|
|
sp-tracing = { path = "../../primitives/tracing", features = ["std"] }
|
|
sp-version = { path = "../../primitives/version", features = ["std"] }
|
|
|
|
pretty_assertions = "1.3.0"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
|
|
std = [
|
|
"codec/std",
|
|
"frame-benchmarking?/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"log/std",
|
|
"scale-info/std",
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
]
|
|
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
]
|
|
|
|
try-runtime = [
|
|
"frame-executive/try-runtime",
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|