mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
34 lines
1.1 KiB
TOML
34 lines
1.1 KiB
TOML
[package]
|
|
name = "serai-coordinator-p2p"
|
|
version = "0.1.0"
|
|
description = "Serai coordinator's P2P abstraction"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/coordinator/p2p"
|
|
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]
|
|
borsh = { version = "1", default-features = false, features = ["std", "derive", "de_strict_order"] }
|
|
|
|
serai-db = { path = "../../common/db", version = "0.1" }
|
|
|
|
serai-client = { path = "../../substrate/client", default-features = false, features = ["serai"] }
|
|
serai-cosign = { path = "../cosign" }
|
|
tributary-sdk = { path = "../tributary-sdk" }
|
|
|
|
futures-lite = { version = "2", default-features = false, features = ["std"] }
|
|
tokio = { version = "1", default-features = false, features = ["sync", "macros"] }
|
|
|
|
log = { version = "0.4", default-features = false, features = ["std"] }
|
|
serai-task = { path = "../../common/task", version = "0.1" }
|