mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 00:31:07 +00:00
96b3a8f92f
* Derive macro for simple structs. * Derive Encode/Decode wherever we can. * Derive for enums. * Support discriminant. * Get rid of some repetition. * Support custom indices. * Derive codec for enums wherever possible. * Fix no_std * WASM rebuilt * Avoid excessive import. * Fix compilation. * Address review grumbles.
23 lines
793 B
TOML
23 lines
793 B
TOML
[package]
|
|
name = "polkadot-network"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Polkadot-specific networking protocol"
|
|
|
|
[dependencies]
|
|
parking_lot = "0.4"
|
|
polkadot-api = { path = "../api" }
|
|
polkadot-availability-store = { path = "../availability-store" }
|
|
polkadot-consensus = { path = "../consensus" }
|
|
polkadot-primitives = { path = "../primitives" }
|
|
substrate-bft = { path = "../../substrate/bft" }
|
|
substrate-codec = { path = "../../substrate/codec" }
|
|
substrate-codec-derive = { path = "../../substrate/codec/derive" }
|
|
substrate-network = { path = "../../substrate/network" }
|
|
substrate-primitives = { path = "../../substrate/primitives" }
|
|
ed25519 = { path = "../../substrate/ed25519" }
|
|
futures = "0.1"
|
|
tokio = "0.1.7"
|
|
log = "0.4"
|
|
rhododendron = "0.2"
|