mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-17 06:41:02 +00:00
3717ec3802
Related https://github.com/paritytech/polkadot-sdk/issues/3032 --- Using https://github.com/liamaharon/cargo-workspace-version-tools/ `cargo run -- sync --path ../polkadot-sdk` --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
35 lines
1.0 KiB
TOML
35 lines
1.0 KiB
TOML
[package]
|
|
name = "substrate-state-trie-migration-rpc"
|
|
version = "27.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
description = "Node-specific RPC methods for interaction with state trie migration."
|
|
readme = "README.md"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
sp-core = { path = "../../../../primitives/core" }
|
|
sp-state-machine = { path = "../../../../primitives/state-machine" }
|
|
sp-trie = { path = "../../../../primitives/trie" }
|
|
trie-db = "0.28.0"
|
|
jsonrpsee = { version = "0.20.3", features = ["client-core", "macros", "server"] }
|
|
|
|
# Substrate Dependencies
|
|
sc-client-api = { path = "../../../../client/api" }
|
|
sc-rpc-api = { path = "../../../../client/rpc-api" }
|
|
sp-runtime = { path = "../../../../primitives/runtime" }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0.111"
|