mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-25 21:19:35 +00:00
8763ef23ed
Also defines primitives for the processor.
36 lines
1.4 KiB
TOML
36 lines
1.4 KiB
TOML
[package]
|
|
name = "serai-processor-frost-attempt-manager"
|
|
version = "0.1.0"
|
|
description = "A manager of multiple attempts of FROST signing protocols"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/processor/frost-attempt-manager"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
keywords = ["frost", "multisig", "threshold"]
|
|
edition = "2021"
|
|
rust-version = "1.79"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["borsh", "scale"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
rand_core = { version = "0.6", default-features = false, features = ["std", "getrandom"] }
|
|
|
|
frost = { package = "modular-frost", path = "../../crypto/frost", version = "^0.8.1", default-features = false }
|
|
|
|
serai-validator-sets-primitives = { path = "../../substrate/validator-sets/primitives", default-features = false, features = ["std"] }
|
|
|
|
hex = { version = "0.4", default-features = false, features = ["std"] }
|
|
log = { version = "0.4", default-features = false, features = ["std"] }
|
|
|
|
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["std"] }
|
|
borsh = { version = "1", default-features = false, features = ["std", "derive", "de_strict_order"] }
|
|
serai-db = { path = "../../common/db" }
|
|
|
|
messages = { package = "serai-processor-messages", path = "../messages" }
|