mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 12:51:02 +00:00
3b685fbf91
* bump versions to 0.9.22 * bump spec_version to 9220
39 lines
937 B
TOML
39 lines
937 B
TOML
[package]
|
|
name = "polkadot-overseer-gen"
|
|
version = "0.9.22"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
description = "Generate an overseer including builder pattern and message wrapper from a single struct."
|
|
autoexamples = false
|
|
|
|
[dependencies]
|
|
gum = { package = "tracing-gum", path = "../../gum" }
|
|
futures = "0.3"
|
|
async-trait = "0.1"
|
|
thiserror = "1"
|
|
metered = { package = "metered-channel", path = "../../metered-channel" }
|
|
polkadot-overseer-gen-proc-macro = { path = "./proc-macro" }
|
|
polkadot-node-network-protocol = { path = "../../network/protocol"}
|
|
# trait SpawnNamed
|
|
polkadot-node-primitives = { path = "../../primitives" }
|
|
futures-timer = "3.0.2"
|
|
pin-project = "1.0"
|
|
|
|
[dev-dependencies]
|
|
trybuild = "1.0.61"
|
|
rustversion = "1.0.6"
|
|
|
|
|
|
|
|
[[example]]
|
|
name = "duo"
|
|
crate-type = ["bin"]
|
|
|
|
[[example]]
|
|
name = "solo"
|
|
crate-type = ["bin"]
|
|
|
|
[features]
|
|
default = []
|
|
expand = ["polkadot-overseer-gen-proc-macro/expand"]
|