mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-25 13:09:30 +00:00
b493e3e31f
* Route validators for any active set through sc-authority-discovery Additionally adds an RPC route to retrieve their P2P addresses. * Have the coordinator get peers from substrate * Have the RPC return one address, not up to 3 Prevents the coordinator from believing it has 3 peers when it has one. * Add missing feature to serai-client * Correct network argument in serai-client for p2p_validators call * Add a test in serai-client to check DHT population with a much quicker failure than the coordinator tests * Update to latest Substrate Removes distinguishing BABE/AuthorityDiscovery keys which causes sc_authority_discovery to populate as desired. * Update to a properly tagged substrate commit * Add all dialed to peers to GossipSub * cargo fmt * Reduce common code in serai-coordinator-tests with amore involved new_test * Use a recursive async function to spawn `n` DockerTests with the necessary networking configuration * Merge UNIQUE_ID and ONE_AT_A_TIME * Tidy up the new recursive code in tests/coordinator * Use a Mutex in CONTEXT to let it be set multiple times * Make complimentary edits to full-stack tests * Augment coordinator P2p connection logs * Drop lock acquisitions before recursing * Better scope lock acquisitions in full-stack, preventing a deadlock * Ensure OUTER_OPS is reset across the test boundary * Add cargo deny allowance for dockertest fork
69 lines
2.1 KiB
TOML
69 lines
2.1 KiB
TOML
[package]
|
|
name = "serai-client"
|
|
version = "0.1.0"
|
|
description = "Client library for the Serai network"
|
|
license = "MIT"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/substrate/client"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
keywords = ["serai"]
|
|
edition = "2021"
|
|
rust-version = "1.74"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
zeroize = "^1.5"
|
|
thiserror = { version = "1", optional = true }
|
|
|
|
hex = "0.4"
|
|
scale = { package = "parity-scale-codec", version = "3" }
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
|
serde_json = { version = "1", optional = true }
|
|
|
|
serai-abi = { path = "../abi", version = "0.1" }
|
|
|
|
multiaddr = { version = "0.18", optional = true }
|
|
sp-core = { git = "https://github.com/serai-dex/substrate", optional = true }
|
|
sp-runtime = { git = "https://github.com/serai-dex/substrate", optional = true }
|
|
frame-system = { git = "https://github.com/serai-dex/substrate", optional = true }
|
|
|
|
async-lock = "3"
|
|
|
|
simple-request = { path = "../../common/request", version = "0.1", optional = true }
|
|
|
|
bitcoin = { version = "0.31", optional = true }
|
|
|
|
ciphersuite = { path = "../../crypto/ciphersuite", version = "0.4", optional = true }
|
|
monero-serai = { path = "../../coins/monero", version = "0.1.4-alpha", optional = true }
|
|
|
|
[dev-dependencies]
|
|
rand_core = "0.6"
|
|
hex = "0.4"
|
|
|
|
blake2 = "0.10"
|
|
|
|
ciphersuite = { path = "../../crypto/ciphersuite", features = ["ristretto"] }
|
|
frost = { package = "modular-frost", path = "../../crypto/frost", features = ["tests"] }
|
|
schnorrkel = { path = "../../crypto/schnorrkel", package = "frost-schnorrkel" }
|
|
|
|
tokio = "1"
|
|
|
|
dockertest = "0.4"
|
|
serai-docker-tests = { path = "../../tests/docker" }
|
|
|
|
[features]
|
|
serai = ["thiserror", "serde", "serde_json", "serai-abi/serde", "multiaddr", "sp-core", "sp-runtime", "frame-system", "simple-request"]
|
|
borsh = ["serai-abi/borsh"]
|
|
|
|
networks = []
|
|
bitcoin = ["networks", "dep:bitcoin"]
|
|
monero = ["networks", "ciphersuite/ed25519", "monero-serai"]
|
|
|
|
# Assumes the default usage is to use Serai as a DEX, which doesn't actually
|
|
# require connecting to a Serai node
|
|
default = ["bitcoin", "monero"]
|