serai/processor/Cargo.toml
2022-05-28 19:57:10 -04:00

24 lines
677 B
TOML

[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"
rand_core = "0.6"
thiserror = "1"
curve25519-dalek = { version = "3", features = ["std"] }
blake2 = "0.10"
dalek-ff-group = { path = "../crypto/dalek-ff-group" }
frost = { path = "../crypto/frost" }
monero = { version = "0.16", features = ["experimental"] }
monero-serai = { path = "../coins/monero", features = ["multisig"] }
[dev-dependencies]
tokio = { version = "1", features = ["full"] }