Initial node implementation #4

Merged
zack merged 51 commits from develop into master 2023-07-19 18:09:13 +00:00
11 changed files with 159 additions and 44 deletions
Showing only changes of commit 2ce1b46d75 - Show all commits

View File

@ -19,10 +19,6 @@ license = "MIT"
# Error handling
[workspace.dependencies.thiserror]
version = "1.0.*"
# Concurrency
[workspace.dependencies.crossbeam]
version = "0.8.*"
default-features = false
# Units of measurement
[workspace.dependencies.uom]
version = "0.34.*"
@ -31,7 +27,7 @@ version = "0.34.*"
version = "0.1.*"
# Serialization
[workspace.dependencies.parity-scale-codec]
version = "3.4.*"
version = "3.5.*"
##### std #####
# Async
@ -50,7 +46,4 @@ readme.workspace = true
license.workspace = true
[dependencies]
thiserror = { workspace = true }
crossbeam = { workspace = true }
uom = { workspace = true }
parity-scale-codec = { workspace = true }

View File

@ -4,5 +4,5 @@ wrap_comments=true
match_block_trailing_comma = true
enum_discrim_align_threshold = 25
fn_call_width = 100
comment_width=100
comment_width = 120
single_line_if_else_max_width = 100