mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 21:37:56 +00:00
40c04cf11d
* *: update rand to v0.8.5 * *: remove useless deps from Cargo.toml * fix pallet-session-benchmarking * fix pallet-election-provider-support test * remove useless rand from dev-dependencies
27 lines
1.0 KiB
TOML
27 lines
1.0 KiB
TOML
[package]
|
|
description = "Substrate transaction protocol"
|
|
name = "sc-network-transactions"
|
|
version = "0.10.0-dev"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
documentation = "https://docs.rs/sc-network-transactions"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
array-bytes = "4.1"
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"] }
|
|
futures = "0.3.21"
|
|
libp2p = "0.49.0"
|
|
log = "0.4.17"
|
|
pin-project = "1.0.12"
|
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../../utils/prometheus" }
|
|
sc-network-common = { version = "0.10.0-dev", path = "../common" }
|
|
sc-peerset = { version = "4.0.0-dev", path = "../../peerset" }
|
|
sp-runtime = { version = "7.0.0", path = "../../../primitives/runtime" }
|
|
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|