Files
serai/processor/Cargo.toml

37 lines
1.0 KiB
TOML
Raw Normal View History

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"
license = "AGPL-3.0-only"
repository = "https://github.com/serai-dex/serai/tree/develop/processor"
2022-05-26 04:36:19 -04:00
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
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
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
2022-05-26 04:36:19 -04:00
[dependencies]
async-trait = "0.1"
rand_core = "0.6"
2022-05-26 04:36:19 -04:00
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"] }
2022-05-26 04:36:19 -04:00
[dev-dependencies]
hex = "0.4"
futures = "0.3"
2022-05-26 04:36:19 -04:00
tokio = { version = "1", features = ["full"] }
frost = { package = "modular-frost", path = "../crypto/frost", features = ["ed25519", "tests"] }
serai-coin = { path = "../coin", features = ["monero", "test"] }