mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-20 05:51:02 +00:00
305aefc43d
This PR updates the version of `serde_json` to `1.0.108` throughout the codebase.
27 lines
899 B
TOML
27 lines
899 B
TOML
[package]
|
|
name = "mmr-rpc"
|
|
version = "4.0.0-dev"
|
|
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 Merkle Mountain Range pallet."
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
|
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
|
|
serde = { version = "1.0.188", features = ["derive"] }
|
|
sp-api = { path = "../../../primitives/api" }
|
|
sp-blockchain = { path = "../../../primitives/blockchain" }
|
|
sp-core = { path = "../../../primitives/core" }
|
|
sp-mmr-primitives = { path = "../../../primitives/merkle-mountain-range" }
|
|
sp-runtime = { path = "../../../primitives/runtime" }
|
|
anyhow = "1"
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0.108"
|