mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
Adds `PartialOrd, Ord` derivations to some items in `serai-primitives` so they may be used as keys within `borsh` maps.
34 lines
1.0 KiB
TOML
34 lines
1.0 KiB
TOML
[package]
|
|
name = "serai-cosign"
|
|
version = "0.1.0"
|
|
description = "Evaluator of cosigns for the Serai network"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/coordinator/cosign"
|
|
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]
|
|
blake2 = { version = "0.11.0-rc.0", default-features = false, features = ["alloc"] }
|
|
|
|
borsh = { version = "1", default-features = false, features = ["std", "derive", "de_strict_order"] }
|
|
serai-abi = { path = "../../substrate/abi", default-features = false, features = ["std"] }
|
|
|
|
log = { version = "0.4", default-features = false, features = ["std"] }
|
|
|
|
tokio = { version = "1", default-features = false }
|
|
|
|
serai-db = { path = "../../common/db", version = "0.1.1" }
|
|
serai-task = { path = "../../common/task", version = "0.1" }
|
|
|
|
serai-cosign-types = { path = "./types" }
|