Skip to content
Snippets Groups Projects
Cargo.toml 1.48 KiB
Newer Older
name = "pallet-transaction-payment"
version = "28.0.0"
authors.workspace = true
edition.workspace = true
license = "Apache-2.0"
homepage.workspace = true
repository.workspace = true
description = "FRAME pallet to manage transaction payments"
readme = "README.md"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

codec = { features = [
Squirrel's avatar
Squirrel committed
	"derive",
], workspace = true }
frame-benchmarking = { optional = true, workspace = true }
frame-support = { workspace = true }
frame-system = { workspace = true }
scale-info = { features = ["derive"], workspace = true }
serde = { optional = true, workspace = true, default-features = true }
sp-core = { workspace = true }
sp-io = { workspace = true }
sp-runtime = { workspace = true }
pallet-balances = { workspace = true, default-features = true }
serde_json = { workspace = true, default-features = true }
Shawn Tabrizi's avatar
Shawn Tabrizi committed
	"frame-support/std",
	"frame-system/std",
	"scale-info/std",
Shawn Tabrizi's avatar
Shawn Tabrizi committed
	"serde",
	"sp-runtime/std",
runtime-benchmarks = [
	"frame-benchmarking/runtime-benchmarks",
	"frame-support/runtime-benchmarks",
	"frame-system/runtime-benchmarks",
	"pallet-balances/runtime-benchmarks",
	"sp-runtime/runtime-benchmarks",
]
try-runtime = [
	"frame-support/try-runtime",
	"frame-system/try-runtime",
	"pallet-balances/try-runtime",