2025-01-09 01:26:25 -05:00
|
|
|
[package]
|
|
|
|
|
name = "serai-coordinator-libp2p-p2p"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "Serai coordinator's libp2p-based P2P backend"
|
|
|
|
|
license = "AGPL-3.0-only"
|
|
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/coordinator/p2p/libp2p"
|
|
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
|
|
|
keywords = []
|
|
|
|
|
edition = "2021"
|
|
|
|
|
publish = false
|
2025-08-26 14:04:39 -04:00
|
|
|
rust-version = "1.87"
|
2025-01-09 01:26:25 -05:00
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
all-features = true
|
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
async-trait = { version = "0.1", default-features = false }
|
|
|
|
|
|
|
|
|
|
rand_core = { version = "0.6", default-features = false, features = ["std"] }
|
|
|
|
|
|
|
|
|
|
zeroize = { version = "^1.5", default-features = false, features = ["std"] }
|
2025-08-29 06:14:25 -04:00
|
|
|
blake2 = { version = "0.11.0-rc.0", default-features = false, features = ["alloc"] }
|
2025-01-09 01:26:25 -05:00
|
|
|
schnorrkel = { version = "0.11", default-features = false, features = ["std"] }
|
|
|
|
|
|
|
|
|
|
hex = { version = "0.4", default-features = false, features = ["std"] }
|
|
|
|
|
borsh = { version = "1", default-features = false, features = ["std", "derive", "de_strict_order"] }
|
|
|
|
|
|
2025-02-26 14:49:28 -05:00
|
|
|
serai-client = { path = "../../../substrate/client", default-features = false, features = ["serai"] }
|
2025-01-09 01:26:25 -05:00
|
|
|
serai-cosign = { path = "../../cosign" }
|
2025-01-11 04:14:21 -05:00
|
|
|
tributary-sdk = { path = "../../tributary-sdk" }
|
2025-01-09 01:26:25 -05:00
|
|
|
|
|
|
|
|
futures-util = { version = "0.3", default-features = false, features = ["std"] }
|
|
|
|
|
tokio = { version = "1", default-features = false, features = ["sync"] }
|
2025-09-06 14:04:55 -04:00
|
|
|
libp2p = { version = "0.55", default-features = false, features = ["tokio", "tcp", "noise", "yamux", "ping", "request-response", "gossipsub", "macros"] }
|
2025-01-09 01:26:25 -05:00
|
|
|
|
|
|
|
|
log = { version = "0.4", default-features = false, features = ["std"] }
|
|
|
|
|
serai-task = { path = "../../../common/task", version = "0.1" }
|
|
|
|
|
serai-coordinator-p2p = { path = "../" }
|