2024-09-05 02:50:02 +00:00
|
|
|
[package]
|
|
|
|
name = "serai-processor-signers"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Signers for the Serai processor"
|
|
|
|
license = "AGPL-3.0-only"
|
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/processor/signers"
|
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
|
|
keywords = []
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
[package.metadata.cargo-machete]
|
2024-09-13 05:14:47 +00:00
|
|
|
ignored = ["borsh"]
|
2024-09-05 02:50:02 +00:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
[dependencies]
|
2024-09-09 05:01:29 +00:00
|
|
|
rand_core = { version = "0.6", default-features = false }
|
2024-09-07 07:33:26 +00:00
|
|
|
zeroize = { version = "1", default-features = false, features = ["std"] }
|
2024-09-05 18:42:06 +00:00
|
|
|
|
2024-09-06 07:20:38 +00:00
|
|
|
ciphersuite = { path = "../../crypto/ciphersuite", default-features = false, features = ["std"] }
|
|
|
|
frost = { package = "modular-frost", path = "../../crypto/frost", default-features = false }
|
2024-09-09 05:01:29 +00:00
|
|
|
frost-schnorrkel = { path = "../../crypto/schnorrkel", default-features = false }
|
2024-09-06 07:20:38 +00:00
|
|
|
|
|
|
|
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["std"] }
|
|
|
|
borsh = { version = "1", default-features = false, features = ["std", "derive", "de_strict_order"] }
|
|
|
|
|
2024-09-09 08:18:54 +00:00
|
|
|
serai-primitives = { path = "../../substrate/primitives", default-features = false, features = ["std"] }
|
2024-09-06 07:20:38 +00:00
|
|
|
serai-validator-sets-primitives = { path = "../../substrate/validator-sets/primitives", default-features = false, features = ["std"] }
|
2024-09-09 05:01:29 +00:00
|
|
|
serai-in-instructions-primitives = { path = "../../substrate/in-instructions/primitives", default-features = false, features = ["std"] }
|
2024-09-06 07:20:38 +00:00
|
|
|
|
|
|
|
serai-db = { path = "../../common/db" }
|
2024-09-05 18:42:06 +00:00
|
|
|
log = { version = "0.4", default-features = false, features = ["std"] }
|
|
|
|
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "sync", "time", "macros"] }
|
|
|
|
|
2024-09-06 07:20:38 +00:00
|
|
|
messages = { package = "serai-processor-messages", path = "../messages" }
|
2024-09-05 18:42:06 +00:00
|
|
|
primitives = { package = "serai-processor-primitives", path = "../primitives" }
|
|
|
|
scanner = { package = "serai-processor-scanner", path = "../scanner" }
|
2024-09-06 07:20:38 +00:00
|
|
|
scheduler = { package = "serai-processor-scheduler-primitives", path = "../scheduler/primitives" }
|
2024-09-05 18:42:06 +00:00
|
|
|
|
|
|
|
frost-attempt-manager = { package = "serai-processor-frost-attempt-manager", path = "../frost-attempt-manager" }
|