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-10-15 23:46:22 -04:00
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/processor"
|
2022-05-26 04:36:19 -04:00
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
2022-07-12 03:38:59 -04:00
|
|
|
keywords = []
|
2022-05-26 04:36:19 -04:00
|
|
|
edition = "2021"
|
2022-07-02 11:04:01 -04:00
|
|
|
publish = false
|
2022-05-26 04:36:19 -04:00
|
|
|
|
2022-10-15 23:46:22 -04:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
all-features = true
|
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
2022-05-26 04:36:19 -04:00
|
|
|
[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-06-28 01:25:26 -04:00
|
|
|
group = "0.12"
|
|
|
|
|
|
2022-06-27 09:02:21 -04:00
|
|
|
transcript = { package = "flexible-transcript", path = "../crypto/transcript", features = ["recommended"] }
|
2022-10-15 23:46:22 -04:00
|
|
|
frost = { package = "modular-frost", path = "../crypto/frost", features = ["ed25519"] }
|
2022-05-28 19:56:59 -04:00
|
|
|
|
2022-10-15 23:46:22 -04:00
|
|
|
serai-coin = { path = "../coin", features = ["monero"] }
|
2022-05-26 04:36:19 -04:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-10-15 23:21:43 -04:00
|
|
|
hex = "0.4"
|
|
|
|
|
|
2022-06-09 02:48:53 -04:00
|
|
|
futures = "0.3"
|
2022-05-26 04:36:19 -04:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2022-10-15 23:21:43 -04:00
|
|
|
|
2022-10-15 23:46:22 -04:00
|
|
|
frost = { package = "modular-frost", path = "../crypto/frost", features = ["ed25519", "tests"] }
|
|
|
|
|
|
|
|
|
|
serai-coin = { path = "../coin", features = ["monero", "test"] }
|