2024-08-16 14:51:31 -04: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
|
2025-08-26 14:04:39 -04:00
|
|
|
rust-version = "1.89"
|
2024-08-16 14:51:31 -04:00
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
all-features = true
|
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
|
|
[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
|
2025-08-29 06:14:25 -04:00
|
|
|
blake2 = { version = "0.11.0-rc.0", default-features = false, features = ["alloc"] }
|
2024-08-16 17:01:45 -04:00
|
|
|
transcript = { package = "flexible-transcript", path = "../../crypto/transcript", default-features = false, features = ["std"] }
|
2025-08-23 15:04:39 -04:00
|
|
|
ciphersuite = { path = "../../crypto/ciphersuite", default-features = false, features = ["std"] }
|
|
|
|
|
dkg = { package = "dkg-evrf", path = "../../crypto/dkg/evrf", default-features = false, features = ["std", "ristretto"] }
|
2024-08-16 14:51:31 -04:00
|
|
|
|
2024-08-16 17:01:45 -04:00
|
|
|
# Substrate
|
2025-02-26 14:49:28 -05:00
|
|
|
serai-primitives = { path = "../../substrate/primitives", default-features = false, features = ["std"] }
|
2024-08-16 14:51:31 -04:00
|
|
|
|
2024-08-16 17:01:45 -04:00
|
|
|
# Encoders
|
|
|
|
|
borsh = { version = "1", default-features = false, features = ["std", "derive", "de_strict_order"] }
|
2024-08-16 14:51:31 -04:00
|
|
|
|
|
|
|
|
# Application
|
|
|
|
|
log = { version = "0.4", default-features = false, features = ["std"] }
|
2024-08-16 17:01:45 -04:00
|
|
|
serai-db = { path = "../../common/db" }
|
|
|
|
|
messages = { package = "serai-processor-messages", path = "../messages" }
|