[package] name = "pallet-state-trie-migration" version = "40.0.0" authors.workspace = true edition.workspace = true license = "Apache-2.0" homepage.workspace = true repository.workspace = true description = "FRAME pallet migration of trie" [lints] workspace = true [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { workspace = true } log = { workspace = true } scale-info = { features = ["derive"], workspace = true } serde = { optional = true, workspace = true, default-features = true } thousands = { optional = true, workspace = true } zstd = { optional = true, workspace = true } frame-benchmarking = { optional = true, workspace = true } frame-support.workspace = true frame-system.workspace = true remote-externalities = { optional = true, workspace = true, default-features = true } sp-core.workspace = true sp-io.workspace = true sp-runtime.workspace = true substrate-state-trie-migration-rpc = { optional = true, workspace = true, default-features = true } [dev-dependencies] parking_lot = { workspace = true, default-features = true } tokio = { features = ["macros"], workspace = true, default-features = true } pallet-balances = { default-features = true, path = "../balances" } sp-tracing = { default-features = true, path = "../../primitives/tracing" } [features] default = ["std"] std = [ "codec/std", "frame-benchmarking?/std", "frame-support/std", "frame-system/std", "log/std", "scale-info/std", "sp-core/std", "sp-io/std", "sp-runtime/std", ] runtime-benchmarks = [ "frame-benchmarking", "frame-benchmarking/runtime-benchmarks", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks", "sp-runtime/runtime-benchmarks", ] try-runtime = [ "frame-support/try-runtime", "frame-system/try-runtime", "sp-runtime/try-runtime", ] remote-test = [ "remote-externalities", "serde", "std", "substrate-state-trie-migration-rpc", "thousands", "zstd", ]