[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", ]