mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 04:09:23 +00:00
48 lines
1.7 KiB
TOML
48 lines
1.7 KiB
TOML
[package]
|
|
name = "serai-coordinator-tributary"
|
|
version = "0.1.0"
|
|
description = "The Tributary used by the Serai Coordinator"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/coordinator/tributary"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
keywords = []
|
|
edition = "2021"
|
|
publish = false
|
|
rust-version = "1.85"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
zeroize = { version = "^1.5", default-features = false, features = ["std"] }
|
|
rand_core = { version = "0.6", default-features = false, features = ["std"] }
|
|
|
|
borsh = { version = "1", default-features = false, features = ["std", "derive", "de_strict_order"] }
|
|
|
|
blake2 = { version = "0.11.0-rc.0", default-features = false, features = ["alloc"] }
|
|
ciphersuite = { path = "../../crypto/ciphersuite", default-features = false, features = ["std"] }
|
|
dalek-ff-group = { path = "../../crypto/dalek-ff-group", default-features = false, features = ["std"] }
|
|
dkg = { path = "../../crypto/dkg", default-features = false, features = ["std"] }
|
|
schnorr = { package = "schnorr-signatures", path = "../../crypto/schnorr", default-features = false, features = ["std"] }
|
|
|
|
serai-primitives = { path = "../../substrate/primitives", default-features = false, features = ["std"] }
|
|
|
|
serai-db = { path = "../../common/db" }
|
|
serai-task = { path = "../../common/task", version = "0.1" }
|
|
|
|
tributary-sdk = { path = "../tributary-sdk" }
|
|
|
|
serai-cosign-types = { path = "../cosign/types" }
|
|
serai-coordinator-substrate = { path = "../substrate" }
|
|
|
|
messages = { package = "serai-processor-messages", path = "../../processor/messages" }
|
|
|
|
log = { version = "0.4", default-features = false, features = ["std"] }
|
|
|
|
[features]
|
|
longer-reattempts = []
|