mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 02:57:57 +00:00
72bde2889f
* Implement OverseerRuntimeClient * blockchainevents * Update patches * Finish merging rntime-api subsystem * First version that is able to produce blocks * Make OverseerRuntimeClient async * Move overseer notification stream forwarding to cumulus * Remove unused imports * Add more logging to collator-protocol * Lockfile * Use hashes in OverseerRuntimeClient * Move OverseerRuntimeClient into extra module * Fix old session info call and make HeadSupportsParachain async * Improve naming of trait * Cleanup * Remove unused From trait implementation * Remove unwanted debug print * Move trait to polkadot-node-subsystem-types * Add sections to runtime client Co-authored-by: Davide Galassi <davxy@datawok.net> * Reorder methods * Fix spelling * Fix spacing in Cargo.toml Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Remove unused babe methods Co-authored-by: Davide Galassi <davxy@datawok.net> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
25 lines
503 B
TOML
25 lines
503 B
TOML
# Basic
|
|
hard_tabs = true
|
|
max_width = 100
|
|
use_small_heuristics = "Max"
|
|
# Imports
|
|
imports_granularity = "Crate"
|
|
reorder_imports = true
|
|
# Consistency
|
|
newline_style = "Unix"
|
|
# Misc
|
|
chain_width = 80
|
|
spaces_around_ranges = false
|
|
binop_separator = "Back"
|
|
reorder_impl_items = false
|
|
match_arm_leading_pipes = "Preserve"
|
|
match_arm_blocks = false
|
|
match_block_trailing_comma = true
|
|
trailing_comma = "Vertical"
|
|
trailing_semicolon = false
|
|
use_field_init_shorthand = true
|
|
ignore = [
|
|
"bridges",
|
|
]
|
|
edition = "2021"
|