mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 17:31:05 +00:00
@@ -20,8 +20,8 @@ futures-timer = "3.0.2"
|
||||
gum = { package = "tracing-gum", path = "../../gum" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] }
|
||||
sp-authority-discovery = { path = "../../../../substrate/primitives/authority-discovery" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core", features = ["std"] }
|
||||
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" }
|
||||
|
||||
@@ -11,12 +11,12 @@ gum = { package = "tracing-gum", path = "../../gum" }
|
||||
parity-scale-codec = { version = "3.6.1", features = ["std"] }
|
||||
polkadot-primitives = { path = "../../../primitives" }
|
||||
polkadot-erasure-coding = { path = "../../../erasure-coding" }
|
||||
polkadot-node-network-protocol = { path = "../../network/protocol" }
|
||||
polkadot-node-network-protocol = { path = "../protocol" }
|
||||
polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
||||
polkadot-node-primitives = { path = "../../primitives" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] }
|
||||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core", features = ["std"] }
|
||||
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
|
||||
thiserror = "1.0.31"
|
||||
rand = "0.8.5"
|
||||
derive_more = "0.99.17"
|
||||
@@ -25,10 +25,10 @@ fatality = "0.0.6"
|
||||
|
||||
[dev-dependencies]
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core", features = ["std"] }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
sp-tracing = { path = "../../../../substrate/primitives/tracing" }
|
||||
sc-network = { path = "../../../../substrate/client/network" }
|
||||
futures-timer = "3.0.2"
|
||||
assert_matches = "1.4.0"
|
||||
polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" }
|
||||
|
||||
@@ -16,11 +16,11 @@ gum = { package = "tracing-gum", path = "../../gum" }
|
||||
polkadot-erasure-coding = { path = "../../../erasure-coding" }
|
||||
polkadot-primitives = { path = "../../../primitives" }
|
||||
polkadot-node-primitives = { path = "../../primitives" }
|
||||
polkadot-node-subsystem = {path = "../../subsystem" }
|
||||
polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
||||
polkadot-node-network-protocol = { path = "../../network/protocol" }
|
||||
polkadot-node-network-protocol = { path = "../protocol" }
|
||||
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-network = { path = "../../../../substrate/client/network" }
|
||||
|
||||
[dev-dependencies]
|
||||
assert_matches = "1.4.0"
|
||||
@@ -28,10 +28,10 @@ env_logger = "0.9.0"
|
||||
futures-timer = "3.0.2"
|
||||
log = "0.4.17"
|
||||
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
sp-application-crypto = { path = "../../../../substrate/primitives/application-crypto" }
|
||||
sc-network = { path = "../../../../substrate/client/network" }
|
||||
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" }
|
||||
|
||||
@@ -11,19 +11,19 @@ futures = "0.3.21"
|
||||
futures-timer = "3.0.2"
|
||||
gum = { package = "tracing-gum", path = "../../gum" }
|
||||
polkadot-primitives = { path = "../../../primitives" }
|
||||
polkadot-node-subsystem = {path = "../../subsystem" }
|
||||
polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
||||
polkadot-node-network-protocol = { path = "../../network/protocol" }
|
||||
polkadot-node-network-protocol = { path = "../protocol" }
|
||||
rand = "0.8"
|
||||
|
||||
[dev-dependencies]
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
sp-application-crypto = { path = "../../../../substrate/primitives/application-crypto" }
|
||||
sp-authority-discovery = { path = "../../../../substrate/primitives/authority-discovery" }
|
||||
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
maplit = "1.0.2"
|
||||
log = "0.4.17"
|
||||
env_logger = "0.9.0"
|
||||
|
||||
@@ -12,11 +12,11 @@ futures = "0.3.21"
|
||||
gum = { package = "tracing-gum", path = "../../gum" }
|
||||
polkadot-primitives = { path = "../../../primitives" }
|
||||
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
polkadot-node-metrics = { path = "../../metrics"}
|
||||
sc-network = { path = "../../../../substrate/client/network" }
|
||||
sp-consensus = { path = "../../../../substrate/primitives/consensus/common" }
|
||||
polkadot-node-metrics = { path = "../../metrics" }
|
||||
polkadot-node-network-protocol = { path = "../protocol" }
|
||||
polkadot-node-subsystem = {path = "../../subsystem" }
|
||||
polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
polkadot-overseer = { path = "../../overseer" }
|
||||
parking_lot = "0.12.0"
|
||||
bytes = "1"
|
||||
@@ -26,8 +26,8 @@ thiserror = "1"
|
||||
[dev-dependencies]
|
||||
assert_matches = "1.4.0"
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
polkadot-node-subsystem-util = { path = "../../subsystem-util"}
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
futures-timer = "3"
|
||||
polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" }
|
||||
|
||||
@@ -11,15 +11,15 @@ futures = "0.3.21"
|
||||
futures-timer = "3"
|
||||
gum = { package = "tracing-gum", path = "../../gum" }
|
||||
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
sp-runtime = { path = "../../../../substrate/primitives/runtime" }
|
||||
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
|
||||
|
||||
polkadot-primitives = { path = "../../../primitives" }
|
||||
polkadot-node-network-protocol = { path = "../../network/protocol" }
|
||||
polkadot-node-network-protocol = { path = "../protocol" }
|
||||
polkadot-node-primitives = { path = "../../primitives" }
|
||||
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
||||
polkadot-node-subsystem = {path = "../../subsystem" }
|
||||
polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
fatality = "0.0.6"
|
||||
thiserror = "1.0.31"
|
||||
tokio-util = "0.7.1"
|
||||
@@ -29,10 +29,10 @@ log = "0.4.17"
|
||||
env_logger = "0.9.0"
|
||||
assert_matches = "1.4.0"
|
||||
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core", features = ["std"] }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
sc-keystore = { path = "../../../../substrate/client/keystore" }
|
||||
sc-network = { path = "../../../../substrate/client/network" }
|
||||
parity-scale-codec = { version = "3.6.1", features = ["std"] }
|
||||
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
|
||||
@@ -13,13 +13,13 @@ derive_more = "0.99.17"
|
||||
parity-scale-codec = { version = "3.6.1", features = ["std"] }
|
||||
polkadot-primitives = { path = "../../../primitives" }
|
||||
polkadot-erasure-coding = { path = "../../../erasure-coding" }
|
||||
polkadot-node-subsystem = {path = "../../subsystem" }
|
||||
polkadot-node-network-protocol = { path = "../../network/protocol" }
|
||||
polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
polkadot-node-network-protocol = { path = "../protocol" }
|
||||
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
||||
polkadot-node-primitives = { path = "../../primitives" }
|
||||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-network = { path = "../../../../substrate/client/network" }
|
||||
sp-application-crypto = { path = "../../../../substrate/primitives/application-crypto" }
|
||||
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
|
||||
thiserror = "1.0.31"
|
||||
fatality = "0.0.6"
|
||||
lru = "0.11.0"
|
||||
@@ -29,9 +29,9 @@ indexmap = "1.9.1"
|
||||
async-channel = "1.8.0"
|
||||
async-trait = "0.1.57"
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
sp-tracing = { path = "../../../../substrate/primitives/tracing" }
|
||||
sc-keystore = { path = "../../../../substrate/client/keystore" }
|
||||
futures-timer = "3.0.2"
|
||||
assert_matches = "1.4.0"
|
||||
lazy_static = "1.4.0"
|
||||
|
||||
@@ -6,11 +6,11 @@ edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-application-crypto = { path = "../../../../substrate/primitives/application-crypto" }
|
||||
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
sc-network = { path = "../../../../substrate/client/network" }
|
||||
sc-network-common = { path = "../../../../substrate/client/network/common" }
|
||||
|
||||
polkadot-node-network-protocol = { path = "../protocol" }
|
||||
polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
@@ -24,10 +24,10 @@ rand_chacha = { version = "0.3.1", default-features = false }
|
||||
gum = { package = "tracing-gum", path = "../../gum" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
sp-consensus-babe = { path = "../../../../substrate/primitives/consensus/babe" }
|
||||
sp-tracing = { path = "../../../../substrate/primitives/tracing" }
|
||||
sp-authority-discovery = { path = "../../../../substrate/primitives/authority-discovery" }
|
||||
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
|
||||
|
||||
@@ -14,8 +14,8 @@ polkadot-primitives = { path = "../../../primitives" }
|
||||
polkadot-node-primitives = { path = "../../primitives" }
|
||||
polkadot-node-jaeger = { path = "../../jaeger" }
|
||||
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-network = { path = "../../../../substrate/client/network" }
|
||||
sc-authority-discovery = { path = "../../../../substrate/client/authority-discovery" }
|
||||
strum = { version = "0.24", features = ["derive"] }
|
||||
futures = "0.3.21"
|
||||
thiserror = "1.0.31"
|
||||
|
||||
@@ -11,12 +11,12 @@ futures = "0.3.21"
|
||||
futures-timer = "3.0.2"
|
||||
gum = { package = "tracing-gum", path = "../../gum" }
|
||||
polkadot-primitives = { path = "../../../primitives" }
|
||||
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
polkadot-node-subsystem = {path = "../../subsystem" }
|
||||
sp-staking = { path = "../../../../substrate/primitives/staking", default-features = false }
|
||||
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
|
||||
polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
polkadot-node-primitives = { path = "../../primitives" }
|
||||
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
||||
polkadot-node-network-protocol = { path = "../../network/protocol" }
|
||||
polkadot-node-network-protocol = { path = "../protocol" }
|
||||
arrayvec = "0.7.4"
|
||||
indexmap = "1.9.1"
|
||||
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
@@ -28,14 +28,14 @@ bitvec = "1"
|
||||
async-channel = "1.8.0"
|
||||
assert_matches = "1.4.0"
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-authority-discovery = { path = "../../../../substrate/primitives/authority-discovery" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
sp-application-crypto = { path = "../../../../substrate/primitives/application-crypto" }
|
||||
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
|
||||
sp-tracing = { path = "../../../../substrate/primitives/tracing" }
|
||||
sc-keystore = { path = "../../../../substrate/client/keystore" }
|
||||
sc-network = { path = "../../../../substrate/client/network" }
|
||||
futures-timer = "3.0.2"
|
||||
polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" }
|
||||
rand_chacha = "0.3"
|
||||
|
||||
Reference in New Issue
Block a user