2022-05-26 08:36:19 +00:00
|
|
|
[package]
|
|
|
|
name = "serai-processor"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Multichain processor premised on canonicity to reach distributed consensus automatically"
|
2022-06-01 05:58:07 +00:00
|
|
|
license = "AGPL-3.0-only"
|
2022-10-16 03:46:22 +00:00
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/processor"
|
2022-05-26 08:36:19 +00:00
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
2022-07-12 07:38:59 +00:00
|
|
|
keywords = []
|
2022-05-26 08:36:19 +00:00
|
|
|
edition = "2021"
|
2022-07-02 15:04:01 +00:00
|
|
|
publish = false
|
2022-05-26 08:36:19 +00:00
|
|
|
|
2022-10-16 03:46:22 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
2022-05-26 08:36:19 +00:00
|
|
|
[dependencies]
|
2023-01-20 16:00:18 +00:00
|
|
|
# Macros
|
2022-05-26 08:36:19 +00:00
|
|
|
async-trait = "0.1"
|
2022-11-11 03:35:09 +00:00
|
|
|
zeroize = "1.5"
|
2022-05-26 08:36:19 +00:00
|
|
|
thiserror = "1"
|
2022-11-11 03:35:09 +00:00
|
|
|
rand_core = "0.6"
|
2022-05-26 08:36:19 +00:00
|
|
|
|
2023-01-20 16:00:18 +00:00
|
|
|
# Cryptography
|
2022-06-28 05:25:26 +00:00
|
|
|
group = "0.12"
|
2022-10-16 17:11:32 +00:00
|
|
|
curve25519-dalek = { version = "3", features = ["std"] }
|
|
|
|
dalek-ff-group = { path = "../crypto/dalek-ff-group" }
|
2023-01-20 16:00:18 +00:00
|
|
|
|
|
|
|
transcript = { package = "flexible-transcript", path = "../crypto/transcript" }
|
2022-10-16 03:46:22 +00:00
|
|
|
frost = { package = "modular-frost", path = "../crypto/frost", features = ["ed25519"] }
|
2022-05-28 23:56:59 +00:00
|
|
|
|
2023-01-20 16:00:18 +00:00
|
|
|
# Monero
|
2022-10-16 17:11:32 +00:00
|
|
|
monero-serai = { path = "../coins/monero", features = ["multisig"] }
|
2022-05-26 08:36:19 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-10-16 17:11:32 +00:00
|
|
|
rand_core = "0.6"
|
|
|
|
|
2022-10-16 03:21:43 +00:00
|
|
|
hex = "0.4"
|
2023-01-20 16:00:18 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2022-10-16 17:11:32 +00:00
|
|
|
serde_json = "1.0"
|
2022-10-16 03:21:43 +00:00
|
|
|
|
2022-06-09 06:48:53 +00:00
|
|
|
futures = "0.3"
|
2022-05-26 08:36:19 +00:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2022-10-16 03:21:43 +00:00
|
|
|
|
2022-10-16 03:46:22 +00:00
|
|
|
frost = { package = "modular-frost", path = "../crypto/frost", features = ["ed25519", "tests"] }
|