mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 16:37:57 +00:00
fafffdb771
* wip * Split bytes fee charging and charging by amount into different traits. * Move to edition 2018. * Implemented charge fee traits for fees module. * Implemented 'on_finalise' for fee module. * Updated fees finalize impl. * Renaming and documentation update. * Added overflow & underflow check for fee calculation. * Added mock and unit tests for fee module. * More unit tests for fees module. * Fixed srml-executive unit tests. * Remove transaction base/bytes fee from balances module, fix unit tests. * fix compile error * Fixed unit test. * Minor fixes. * Bump spec version. * Bump spec version. * Updated fees module and runtime wasm. * Fees module code style improvement; updated runtime wasm. * Bump spec and impl version.
35 lines
1.1 KiB
TOML
35 lines
1.1 KiB
TOML
[package]
|
|
name = "srml-executive"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", default-features = false }
|
|
parity-codec = { version = "3.0", default-features = false }
|
|
rstd = { package = "sr-std", path = "../../core/sr-std", default-features = false }
|
|
runtime_io = { package = "sr-io", path = "../../core/sr-io", default-features = false }
|
|
primitives = { package = "sr-primitives", path = "../../core/sr-primitives", default-features = false }
|
|
srml-support = { path = "../support", default-features = false }
|
|
system = { package = "srml-system", path = "../system", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "0.1.0"
|
|
substrate-primitives = { path = "../../core/primitives" }
|
|
srml-indices = { path = "../indices" }
|
|
balances = { package = "srml-balances", path = "../balances" }
|
|
fees = { package = "srml-fees", path = "../fees" }
|
|
parity-codec-derive = { version = "3.0", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"rstd/std",
|
|
"srml-support/std",
|
|
"serde/std",
|
|
"parity-codec/std",
|
|
"primitives/std",
|
|
"runtime_io/std",
|
|
"system/std",
|
|
]
|