mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-03 17:40:34 +00:00
19488cf446
Updated missing fields/sections, even if some won't be used, to standardize. Also made FROST tests feature-gated.
36 lines
1 KiB
TOML
36 lines
1 KiB
TOML
[package]
|
|
name = "serai-processor"
|
|
version = "0.1.0"
|
|
description = "Multichain processor premised on canonicity to reach distributed consensus automatically"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/processor"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
keywords = []
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
rand_core = "0.6"
|
|
thiserror = "1"
|
|
|
|
group = "0.12"
|
|
|
|
transcript = { package = "flexible-transcript", path = "../crypto/transcript", features = ["recommended"] }
|
|
frost = { package = "modular-frost", path = "../crypto/frost", features = ["ed25519"] }
|
|
|
|
serai-coin = { path = "../coin", features = ["monero"] }
|
|
|
|
[dev-dependencies]
|
|
hex = "0.4"
|
|
|
|
futures = "0.3"
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
frost = { package = "modular-frost", path = "../crypto/frost", features = ["ed25519", "tests"] }
|
|
|
|
serai-coin = { path = "../coin", features = ["monero", "test"] }
|