mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 13:21:01 +00:00
6a964c5df0
* bumping version for next release * add changelog * add guide
26 lines
1004 B
TOML
26 lines
1004 B
TOML
[package]
|
|
name = "pallet-transaction-payment-rpc"
|
|
version = "3.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "RPC interface for the transaction payment module."
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
|
jsonrpc-core = "15.1.0"
|
|
jsonrpc-core-client = "15.1.0"
|
|
jsonrpc-derive = "15.1.0"
|
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
|
sp-rpc = { version = "3.0.0", path = "../../../primitives/rpc" }
|
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
|
sp-api = { version = "3.0.0", path = "../../../primitives/api" }
|
|
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
|
|
pallet-transaction-payment-rpc-runtime-api = { version = "3.0.0", path = "./runtime-api" }
|