mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-28 22:49:42 +00:00
30 lines
1,000 B
TOML
30 lines
1,000 B
TOML
[package]
|
|
name = "processor-messages"
|
|
version = "0.1.0"
|
|
description = "Messages sent and received by the processor"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/processor/messages"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
keywords = []
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
zeroize = { version = "1", features = ["derive"] }
|
|
|
|
rand_core = "0.6"
|
|
rand_chacha = "0.3"
|
|
transcript = { package = "flexible-transcript", path = "../../crypto/transcript" }
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
dkg = { path = "../../crypto/dkg", features = ["serde"] }
|
|
|
|
serai-primitives = { path = "../../substrate/primitives" }
|
|
in-instructions-primitives = { path = "../../substrate/in-instructions/primitives" }
|
|
tokens-primitives = { path = "../../substrate/tokens/primitives" }
|
|
validator-sets-primitives = { path = "../../substrate/validator-sets/primitives" }
|