mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-19 18:11:03 +00:00
65569620c2
* Return FeeDetails in compute_fee_raw() * Add payment_queryDetails rpc * Simplify serde attribute a bit * Fix line width check * Use saturating_add() * Move transaction payment rpc types to types.rs * Add file header * Fix test * Update Cargo.lock * Nit * Apply the review suggestions * . * . * Fix serde * Fix rust doc * . * Update frame/transaction-payment/src/types.rs Co-authored-by: Guillaume Thiolliere <gui.thiolliere@gmail.com> * Use NumberOrHex in fee details RPC * Address review feedback * Nits * Update some docs * Address review * Update frame/transaction-payment/src/types.rs Co-authored-by: Guillaume Thiolliere <gui.thiolliere@gmail.com> * Happy 2021 * Nit * Address code review * Remove needless bound Co-authored-by: Guillaume Thiolliere <gui.thiolliere@gmail.com>
43 lines
1.4 KiB
TOML
43 lines
1.4 KiB
TOML
[package]
|
|
name = "pallet-transaction-payment"
|
|
version = "2.0.1"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "FRAME pallet to manage transaction payments"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "1.3.6", default-features = false, features = ["derive"] }
|
|
serde = { version = "1.0.101", optional = true }
|
|
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
|
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
|
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
|
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
|
smallvec = "1.4.1"
|
|
sp-io = { version = "2.0.0", path = "../../primitives/io", default-features = false }
|
|
sp-core = { version = "2.0.0", path = "../../primitives/core", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0.41"
|
|
pallet-balances = { version = "2.0.0", path = "../balances" }
|
|
sp-storage = { version = "2.0.0", path = "../../primitives/storage" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"serde",
|
|
"codec/std",
|
|
"sp-std/std",
|
|
"sp-runtime/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"sp-io/std",
|
|
"sp-core/std",
|
|
]
|