2024-08-16 18:51:31 +00:00
|
|
|
[package]
|
|
|
|
name = "serai-processor-key-gen"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Key generation for the Serai processor"
|
|
|
|
license = "AGPL-3.0-only"
|
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/processor/key-gen"
|
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
|
|
keywords = []
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
2024-08-16 21:01:45 +00:00
|
|
|
[package.metadata.cargo-machete]
|
|
|
|
ignored = ["scale"]
|
|
|
|
|
2024-08-16 18:51:31 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# Macros
|
|
|
|
zeroize = { version = "1", default-features = false, features = ["std"] }
|
|
|
|
|
|
|
|
# Libs
|
|
|
|
rand_core = { version = "0.6", default-features = false, features = ["std", "getrandom"] }
|
|
|
|
rand_chacha = { version = "0.3", default-features = false, features = ["std"] }
|
|
|
|
|
|
|
|
# Cryptography
|
|
|
|
blake2 = { version = "0.10", default-features = false, features = ["std"] }
|
2024-08-16 21:01:45 +00:00
|
|
|
transcript = { package = "flexible-transcript", path = "../../crypto/transcript", default-features = false, features = ["std"] }
|
|
|
|
ec-divisors = { package = "ec-divisors", path = "../../crypto/evrf/divisors", default-features = false }
|
|
|
|
ciphersuite = { path = "../../crypto/ciphersuite", default-features = false, features = ["std", "ristretto"] }
|
|
|
|
dkg = { package = "dkg", path = "../../crypto/dkg", default-features = false, features = ["std", "evrf-ristretto"] }
|
2024-08-16 18:51:31 +00:00
|
|
|
|
2024-08-16 21:01:45 +00:00
|
|
|
# Substrate
|
|
|
|
serai-validator-sets-primitives = { path = "../../substrate/validator-sets/primitives", default-features = false, features = ["std"] }
|
2024-08-16 18:51:31 +00:00
|
|
|
|
2024-08-16 21:01:45 +00:00
|
|
|
# Encoders
|
|
|
|
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-08-16 18:51:31 +00:00
|
|
|
|
|
|
|
# Application
|
|
|
|
log = { version = "0.4", default-features = false, features = ["std"] }
|
2024-08-16 21:01:45 +00:00
|
|
|
serai-db = { path = "../../common/db" }
|
|
|
|
messages = { package = "serai-processor-messages", path = "../messages" }
|