mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-16 23:41:02 +00:00
prepare orchestra crate publishing (#5579)
This commit is contained in:
committed by
GitHub
parent
d0453cf24d
commit
fd51ecbe70
@@ -22,7 +22,7 @@ parity-util-mem = { version = "0.11.0", default-features = false }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
|
||||
[dev-dependencies]
|
||||
metered-channel = { path = "../metered-channel" }
|
||||
metered = { package = "prioritized-metered-channel", path = "../metered-channel" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
futures = { version = "0.3.21", features = ["thread-pool"] }
|
||||
femme = "2.2.1"
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
[package]
|
||||
name = "orchestra"
|
||||
version = "0.9.22"
|
||||
version = "0.0.1"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2021"
|
||||
description = "Generate an orchestra of subsystems from a single struct."
|
||||
repository = "https://github.com/paritytech/polkadot"
|
||||
license = "MIT OR Apache-2.0"
|
||||
autoexamples = false
|
||||
|
||||
@@ -12,8 +13,8 @@ tracing = "0.1.34"
|
||||
futures = "0.3"
|
||||
async-trait = "0.1"
|
||||
thiserror = "1"
|
||||
metered = { package = "metered-channel", path = "../../metered-channel" }
|
||||
orchestra-proc-macro = { path = "./proc-macro" }
|
||||
metered = { package = "prioritized-metered-channel", version = "0.1.1", path = "../../metered-channel" }
|
||||
orchestra-proc-macro = { version = "0.0.1", path = "./proc-macro" }
|
||||
futures-timer = "3.0.2"
|
||||
pin-project = "1.0"
|
||||
dyn-clonable = "0.9"
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
[package]
|
||||
name = "orchestra-proc-macro"
|
||||
version = "0.9.22"
|
||||
version = "0.0.1"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2021"
|
||||
description = "Generate an orchestra of subsystems from a single annotated struct definition."
|
||||
repository = "https://github.com/paritytech/polkadot"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
|
||||
@@ -39,7 +39,7 @@ use crate::{
|
||||
gen::Delay,
|
||||
HeadSupportsParachains,
|
||||
};
|
||||
use metered_channel as metered;
|
||||
use metered;
|
||||
|
||||
use assert_matches::assert_matches;
|
||||
use sp_core::crypto::Pair as _;
|
||||
|
||||
Reference in New Issue
Block a user