mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-21 23:51:01 +00:00
bb175f0373
* cargo upgrade libp2p * Get rid of `NetworkBehaviourEventProcess` in handling of `CustomMessageOutcome` * Get rid of `NetworkBehaviourEventProcess` in handling of `request_responses::Event` * Get rid of `NetworkBehaviourEventProcess` in handling of `peer_info::PeerInfoEvent` * Get rid of `NetworkBehaviourEventProcess` in handling of `DiscoveryOut` * Get rid of `poll()` method in `Bahaviour` * minor: comments * Upgrade libp2p to 0.49.0 (unreleased) * Support multiple Kad protocol names * Make borrow checker happy * minor: wording * Make substrate build with libp2p-0.49.0 * rustfmt * Get rid of MdnsWrapper * Resolve deprecation warnings * Fix documentation * Apply suggestions from code review: fix typos Co-authored-by: Aaro Altonen <48052676+altonen@users.noreply.github.com> * Apply suggestion: simplify kad protocol name matching Co-authored-by: Aaro Altonen <48052676+altonen@users.noreply.github.com>
44 lines
1.7 KiB
TOML
44 lines
1.7 KiB
TOML
[package]
|
|
name = "sc-authority-discovery"
|
|
version = "0.10.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Substrate authority discovery."
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[build-dependencies]
|
|
prost-build = "0.11"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
|
|
futures = "0.3.21"
|
|
futures-timer = "3.0.1"
|
|
ip_network = "0.4.1"
|
|
libp2p = { version = "0.49.0", default-features = false, features = ["kad"] }
|
|
log = "0.4.17"
|
|
prost = "0.11"
|
|
rand = "0.7.2"
|
|
thiserror = "1.0"
|
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../utils/prometheus" }
|
|
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
|
sc-network-common = { version = "0.10.0-dev", path = "../network/common" }
|
|
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
|
sp-authority-discovery = { version = "4.0.0-dev", path = "../../primitives/authority-discovery" }
|
|
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
|
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
|
sp-keystore = { version = "0.12.0", path = "../../primitives/keystore" }
|
|
sp-runtime = { version = "6.0.0", path = "../../primitives/runtime" }
|
|
async-trait = "0.1.56"
|
|
|
|
[dev-dependencies]
|
|
quickcheck = { version = "1.0.3", default-features = false }
|
|
sp-tracing = { version = "5.0.0", path = "../../primitives/tracing" }
|
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|