mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 09:51:10 +00:00
11703a5916
* Fisr migrated version of weight to paint * Bump * Minor nits * Some review fixes. * Line width * Revert spec bump * Fix build * Update lock file * Update palette/executive/src/lib.rs Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com> * Update palette/membership/src/lib.rs Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com>
27 lines
865 B
TOML
27 lines
865 B
TOML
[package]
|
|
name = "pallet-transaction-payment-rpc-runtime-api"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
|
sr-api = { path = "../../../../primitives/sr-api", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "1.0.6", default-features = false, features = ["derive"] }
|
|
rstd = { package = "sr-std", path = "../../../../primitives/sr-std", default-features = false }
|
|
sr-primitives = { path = "../../../../primitives/sr-primitives", default-features = false }
|
|
support = { package = "palette-support", path = "../../../support", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0.41"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"serde",
|
|
"sr-api/std",
|
|
"codec/std",
|
|
"rstd/std",
|
|
"sr-primitives/std",
|
|
]
|