2022-05-26 04:36:19 -04:00
|
|
|
[package]
|
|
|
|
|
name = "serai-processor"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "Multichain processor premised on canonicity to reach distributed consensus automatically"
|
2022-06-01 01:58:07 -04:00
|
|
|
license = "AGPL-3.0-only"
|
2022-05-26 04:36:19 -04:00
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
async-trait = "0.1"
|
2022-05-28 19:56:59 -04:00
|
|
|
rand_core = "0.6"
|
2022-05-26 04:36:19 -04:00
|
|
|
thiserror = "1"
|
|
|
|
|
|
2022-05-28 05:24:17 -04:00
|
|
|
curve25519-dalek = { version = "3", features = ["std"] }
|
2022-05-28 19:56:59 -04:00
|
|
|
blake2 = "0.10"
|
|
|
|
|
|
2022-06-03 01:37:12 -04:00
|
|
|
transcript = { path = "../crypto/transcript" }
|
2022-05-28 19:56:59 -04:00
|
|
|
dalek-ff-group = { path = "../crypto/dalek-ff-group" }
|
|
|
|
|
frost = { path = "../crypto/frost" }
|
|
|
|
|
|
2022-05-26 04:36:19 -04:00
|
|
|
monero = { version = "0.16", features = ["experimental"] }
|
|
|
|
|
monero-serai = { path = "../coins/monero", features = ["multisig"] }
|
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-06-01 03:30:57 -04:00
|
|
|
rand = "0.8"
|
2022-05-26 04:36:19 -04:00
|
|
|
tokio = { version = "1", features = ["full"] }
|