mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-18 21:11:01 +00:00
5c4fa55f09
Bumps [log](https://github.com/rust-lang/log) from 0.4.14 to 0.4.16. - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/commits) --- updated-dependencies: - dependency-name: log dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
39 lines
1.4 KiB
TOML
39 lines
1.4 KiB
TOML
[package]
|
|
name = "substrate-state-trie-migration-rpc"
|
|
version = "4.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Node-specific RPC methods for interaction with state trie migration."
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
|
|
serde = { version = "1", features = ["derive"] }
|
|
log = { version = "0.4.16", default-features = false }
|
|
|
|
sp-std = { path = "../../../../primitives/std" }
|
|
sp-io = { path = "../../../../primitives/io" }
|
|
sp-core = { path = "../../../../primitives/core" }
|
|
sp-state-machine = { path = "../../../../primitives/state-machine" }
|
|
sp-trie = { path = "../../../../primitives/trie" }
|
|
trie-db = { version = "0.23.1" }
|
|
|
|
jsonrpc-core = "18.0.0"
|
|
jsonrpc-core-client = "18.0.0"
|
|
jsonrpc-derive = "18.0.0"
|
|
|
|
# Substrate Dependencies
|
|
sc-client-api = { version = "4.0.0-dev", path = "../../../../client/api" }
|
|
sc-rpc-api = { version = "0.10.0-dev", path = "../../../../client/rpc-api" }
|
|
sp-runtime = { version = "6.0.0", path = "../../../../primitives/runtime" }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1"
|