Add the bones of the processor

This commit is contained in:
Luke Parker
2022-05-26 04:36:19 -04:00
parent 4ddb838a5a
commit c398b246ff
8 changed files with 136 additions and 0 deletions

17
processor/Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "serai-processor"
version = "0.1.0"
description = "Multichain processor premised on canonicity to reach distributed consensus automatically"
license = "MIT"
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
edition = "2021"
[dependencies]
async-trait = "0.1"
thiserror = "1"
monero = { version = "0.16", features = ["experimental"] }
monero-serai = { path = "../coins/monero", features = ["multisig"] }
[dev-dependencies]
tokio = { version = "1", features = ["full"] }