2024-12-31 10:37:19 -05:00
|
|
|
[package]
|
|
|
|
|
name = "serai-coordinator-substrate"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "Serai Coordinator's Substrate Scanner"
|
|
|
|
|
license = "AGPL-3.0-only"
|
|
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/coordinator/substrate"
|
|
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
|
|
|
keywords = []
|
|
|
|
|
edition = "2021"
|
|
|
|
|
publish = false
|
2025-08-26 14:04:39 -04:00
|
|
|
rust-version = "1.85"
|
2024-12-31 10:37:19 -05:00
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
all-features = true
|
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-01-14 01:58:26 -05:00
|
|
|
bitvec = { version = "1", default-features = false, features = ["std"] }
|
|
|
|
|
|
2024-12-31 10:37:19 -05:00
|
|
|
borsh = { version = "1", default-features = false, features = ["std", "derive", "de_strict_order"] }
|
2025-01-15 12:51:35 -05:00
|
|
|
|
|
|
|
|
dkg = { path = "../../crypto/dkg", default-features = false, features = ["std"] }
|
|
|
|
|
|
2025-02-26 14:49:28 -05:00
|
|
|
serai-client = { path = "../../substrate/client", version = "0.1", default-features = false, features = ["serai"] }
|
2024-12-31 10:37:19 -05:00
|
|
|
|
|
|
|
|
log = { version = "0.4", default-features = false, features = ["std"] }
|
|
|
|
|
|
|
|
|
|
futures = { version = "0.3", default-features = false, features = ["std"] }
|
|
|
|
|
tokio = { version = "1", default-features = false }
|
|
|
|
|
|
2024-12-31 12:14:32 -05:00
|
|
|
serai-db = { path = "../../common/db", version = "0.1.1" }
|
|
|
|
|
serai-task = { path = "../../common/task", version = "0.1" }
|
2024-12-31 10:37:19 -05:00
|
|
|
|
2024-12-31 12:14:32 -05:00
|
|
|
serai-cosign = { path = "../cosign", version = "0.1" }
|
2024-12-31 10:37:19 -05:00
|
|
|
|
2024-12-31 12:14:32 -05:00
|
|
|
messages = { package = "serai-processor-messages", version = "0.1", path = "../../processor/messages" }
|