mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 12:48:00 +00:00
27 lines
1.0 KiB
TOML
27 lines
1.0 KiB
TOML
[package]
|
|
name = "mmr-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 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.163", features = ["derive"] }
|
|
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
|
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
|
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
|
sp-mmr-primitives = { version = "4.0.0-dev", path = "../../../primitives/merkle-mountain-range" }
|
|
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
|
anyhow = "1"
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0.85"
|