mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 01:41:09 +00:00
@@ -13,8 +13,8 @@ polkadot-node-primitives = { path = "../primitives" }
|
||||
polkadot-node-subsystem = { path = "../subsystem" }
|
||||
polkadot-node-subsystem-util = { path = "../subsystem-util" }
|
||||
polkadot-primitives = { path = "../../primitives" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { path = "../../../substrate/primitives/core" }
|
||||
sp-maybe-compressed-blob = { path = "../../../substrate/primitives/maybe-compressed-blob" }
|
||||
thiserror = "1.0.31"
|
||||
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["bit-vec", "derive"] }
|
||||
|
||||
@@ -22,4 +22,4 @@ parity-scale-codec = { version = "3.6.1", default-features = false, features = [
|
||||
polkadot-node-subsystem-test-helpers = { path = "../subsystem-test-helpers" }
|
||||
test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../primitives/test-helpers" }
|
||||
assert_matches = "1.4.0"
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { path = "../../../substrate/primitives/keyring" }
|
||||
|
||||
@@ -25,20 +25,20 @@ polkadot-primitives = { path = "../../../primitives" }
|
||||
polkadot-node-primitives = { path = "../../primitives" }
|
||||
polkadot-node-jaeger = { path = "../../jaeger" }
|
||||
|
||||
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||
sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = ["full_crypto"] }
|
||||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||
sc-keystore = { path = "../../../../substrate/client/keystore", default-features = false }
|
||||
sp-consensus = { path = "../../../../substrate/primitives/consensus/common", default-features = false }
|
||||
sp-consensus-slots = { path = "../../../../substrate/primitives/consensus/slots", default-features = false }
|
||||
sp-application-crypto = { path = "../../../../substrate/primitives/application-crypto", default-features = false, features = ["full_crypto"] }
|
||||
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
async-trait = "0.1.57"
|
||||
parking_lot = "0.12.0"
|
||||
rand_core = "0.5.1" # should match schnorrkel
|
||||
sp-keyring = { 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" }
|
||||
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
sp-consensus-babe = { path = "../../../../substrate/primitives/consensus/babe" }
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
assert_matches = "1.4.0"
|
||||
kvdb-memorydb = "0.13.0"
|
||||
|
||||
@@ -15,12 +15,12 @@ bitvec = "1.0.0"
|
||||
|
||||
parity-scale-codec = { version = "3.6.1", features = ["derive"] }
|
||||
erasure = { package = "polkadot-erasure-coding", path = "../../../erasure-coding" }
|
||||
polkadot-node-subsystem = {path = "../../subsystem" }
|
||||
polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
||||
polkadot-overseer = { path = "../../overseer" }
|
||||
polkadot-primitives = { path = "../../../primitives" }
|
||||
polkadot-node-primitives = { path = "../../primitives" }
|
||||
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||
sp-consensus = { path = "../../../../substrate/primitives/consensus/common", default-features = false }
|
||||
polkadot-node-jaeger = { path = "../../jaeger" }
|
||||
|
||||
[dev-dependencies]
|
||||
@@ -29,9 +29,9 @@ env_logger = "0.9.0"
|
||||
assert_matches = "1.4.0"
|
||||
kvdb-memorydb = "0.13.0"
|
||||
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
parking_lot = "0.12.0"
|
||||
test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" }
|
||||
|
||||
@@ -7,10 +7,10 @@ license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
futures = "0.3.21"
|
||||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
|
||||
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" }
|
||||
erasure-coding = { package = "polkadot-erasure-coding", path = "../../../erasure-coding" }
|
||||
statement-table = { package = "polkadot-statement-table", path = "../../../statement-table" }
|
||||
@@ -20,11 +20,11 @@ thiserror = "1.0.31"
|
||||
fatality = "0.0.6"
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
sp-application-crypto = { path = "../../../../substrate/primitives/application-crypto" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
sc-keystore = { path = "../../../../substrate/client/keystore" }
|
||||
sp-tracing = { path = "../../../../substrate/primitives/tracing" }
|
||||
futures = { version = "0.3.21", features = ["thread-pool"] }
|
||||
assert_matches = "1.4.0"
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
|
||||
@@ -11,7 +11,7 @@ gum = { package = "tracing-gum", path = "../../gum" }
|
||||
polkadot-primitives = { path = "../../../primitives" }
|
||||
polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
||||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
|
||||
wasm-timer = "0.2.5"
|
||||
thiserror = "1.0.31"
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ futures = "0.3.21"
|
||||
futures-timer = "3.0.2"
|
||||
gum = { package = "tracing-gum", path = "../../gum" }
|
||||
|
||||
sp-maybe-compressed-blob = { package = "sp-maybe-compressed-blob", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-maybe-compressed-blob = { package = "sp-maybe-compressed-blob", path = "../../../../substrate/primitives/maybe-compressed-blob" }
|
||||
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["bit-vec", "derive"] }
|
||||
|
||||
polkadot-primitives = { path = "../../../primitives" }
|
||||
@@ -27,9 +27,9 @@ polkadot-overseer = { path = "../../overseer" }
|
||||
polkadot-node-core-pvf = { path = "../pvf" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
futures = { version = "0.3.21", features = ["thread-pool"] }
|
||||
assert_matches = "1.4.0"
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" }
|
||||
|
||||
@@ -8,12 +8,12 @@ license.workspace = true
|
||||
[dependencies]
|
||||
futures = "0.3.21"
|
||||
gum = { package = "tracing-gum", path = "../../gum" }
|
||||
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-blockchain = { path = "../../../../substrate/primitives/blockchain" }
|
||||
polkadot-primitives = { path = "../../../primitives" }
|
||||
polkadot-node-metrics = { path = "../../metrics" }
|
||||
polkadot-node-subsystem = {path = "../../subsystem" }
|
||||
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
sc-client-api = { path = "../../../../substrate/client/api" }
|
||||
sc-consensus-babe = { path = "../../../../substrate/client/consensus/babe" }
|
||||
|
||||
[dev-dependencies]
|
||||
futures = { version = "0.3.21", features = ["thread-pool"] }
|
||||
@@ -21,4 +21,4 @@ maplit = "1.0.2"
|
||||
parity-scale-codec = "3.6.1"
|
||||
polkadot-node-primitives = { path = "../../primitives" }
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
|
||||
@@ -20,7 +20,7 @@ parity-scale-codec = "3.6.1"
|
||||
|
||||
[dev-dependencies]
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
parking_lot = "0.12.0"
|
||||
assert_matches = "1"
|
||||
kvdb-memorydb = "0.13.0"
|
||||
|
||||
@@ -19,20 +19,20 @@ polkadot-node-primitives = { path = "../../primitives" }
|
||||
polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
||||
|
||||
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-keystore = { path = "../../../../substrate/client/keystore" }
|
||||
|
||||
|
||||
[dev-dependencies]
|
||||
kvdb-memorydb = "0.13.0"
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
|
||||
assert_matches = "1.4.0"
|
||||
test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" }
|
||||
futures-timer = "3.0.2"
|
||||
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-application-crypto = { path = "../../../../substrate/primitives/application-crypto" }
|
||||
sp-tracing = { path = "../../../../substrate/primitives/tracing" }
|
||||
|
||||
[features]
|
||||
# If not enabled, the dispute coordinator will do nothing.
|
||||
|
||||
@@ -14,5 +14,5 @@ async-trait = "0.1.57"
|
||||
polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
polkadot-overseer = { path = "../../overseer" }
|
||||
polkadot-primitives = { path = "../../../primitives" }
|
||||
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-blockchain = { path = "../../../../substrate/primitives/blockchain" }
|
||||
sp-inherents = { path = "../../../../substrate/primitives/inherents" }
|
||||
|
||||
@@ -23,8 +23,8 @@ assert_matches = "1"
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
polkadot-node-subsystem-types = { path = "../../subsystem-types" }
|
||||
polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
sc-keystore = { path = "../../../../substrate/client/keystore" }
|
||||
sp-application-crypto = { path = "../../../../substrate/primitives/application-crypto" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
|
||||
|
||||
@@ -18,7 +18,7 @@ futures-timer = "3.0.2"
|
||||
fatality = "0.0.6"
|
||||
|
||||
[dev-dependencies]
|
||||
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-application-crypto = { path = "../../../../substrate/primitives/application-crypto" }
|
||||
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" }
|
||||
|
||||
@@ -17,14 +17,14 @@ polkadot-primitives = { path = "../../../primitives" }
|
||||
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
||||
polkadot-overseer = { path = "../../overseer" }
|
||||
|
||||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers"}
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
sp-runtime = { path = "../../../../substrate/primitives/runtime" }
|
||||
sc-keystore = { path = "../../../../substrate/client/keystore" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" }
|
||||
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-application-crypto = { path = "../../../../substrate/primitives/application-crypto" }
|
||||
futures-timer = "3.0.2"
|
||||
|
||||
@@ -32,22 +32,22 @@ polkadot-node-metrics = { path = "../../metrics" }
|
||||
polkadot-node-primitives = { path = "../../primitives" }
|
||||
polkadot-primitives = { path = "../../../primitives" }
|
||||
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
sp-wasm-interface = { path = "../../../../substrate/primitives/wasm-interface" }
|
||||
sp-maybe-compressed-blob = { path = "../../../../substrate/primitives/maybe-compressed-blob" }
|
||||
sp-tracing = { path = "../../../../substrate/primitives/tracing", optional = true }
|
||||
polkadot-node-core-pvf-prepare-worker = { path = "prepare-worker", optional = true }
|
||||
polkadot-node-core-pvf-execute-worker = { path = "execute-worker", optional = true }
|
||||
|
||||
[build-dependencies]
|
||||
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
substrate-build-script-utils = { path = "../../../../substrate/utils/build-script-utils" }
|
||||
|
||||
[dev-dependencies]
|
||||
assert_matches = "1.4.0"
|
||||
hex-literal = "0.3.4"
|
||||
polkadot-node-core-pvf-common = { path = "common", features = ["test-utils"] }
|
||||
# For the puppet worker, depend on ourselves with the test-utils feature.
|
||||
polkadot-node-core-pvf = { path = ".", features = ["test-utils"] }
|
||||
polkadot-node-core-pvf = { path = "", features = ["test-utils"] }
|
||||
|
||||
adder = { package = "test-parachain-adder", path = "../../../parachain/test-parachains/adder" }
|
||||
halt = { package = "test-parachain-halt", path = "../../../parachain/test-parachains/halt" }
|
||||
|
||||
@@ -18,14 +18,14 @@ parity-scale-codec = { version = "3.6.1", default-features = false, features = [
|
||||
polkadot-parachain = { path = "../../../../parachain" }
|
||||
polkadot-primitives = { path = "../../../../primitives" }
|
||||
|
||||
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-executor-wasmtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-executor = { path = "../../../../../substrate/client/executor" }
|
||||
sc-executor-common = { path = "../../../../../substrate/client/executor/common" }
|
||||
sc-executor-wasmtime = { path = "../../../../../substrate/client/executor/wasmtime" }
|
||||
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
|
||||
sp-core = { path = "../../../../../substrate/primitives/core" }
|
||||
sp-externalities = { path = "../../../../../substrate/primitives/externalities" }
|
||||
sp-io = { path = "../../../../../substrate/primitives/io" }
|
||||
sp-tracing = { path = "../../../../../substrate/primitives/tracing", optional = true }
|
||||
|
||||
[target.'cfg(target_os = "linux")'.dependencies]
|
||||
landlock = "0.2.0"
|
||||
|
||||
@@ -20,9 +20,9 @@ polkadot-node-core-pvf-common = { path = "../common" }
|
||||
polkadot-parachain = { path = "../../../../parachain" }
|
||||
polkadot-primitives = { path = "../../../../primitives" }
|
||||
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { path = "../../../../../substrate/primitives/core" }
|
||||
sp-maybe-compressed-blob = { path = "../../../../../substrate/primitives/maybe-compressed-blob" }
|
||||
sp-tracing = { path = "../../../../../substrate/primitives/tracing" }
|
||||
|
||||
[target.'cfg(target_os = "linux")'.dependencies]
|
||||
tikv-jemalloc-ctl = "0.5.0"
|
||||
|
||||
@@ -20,12 +20,12 @@ polkadot-node-core-pvf-common = { path = "../common" }
|
||||
polkadot-parachain = { path = "../../../../parachain" }
|
||||
polkadot-primitives = { path = "../../../../primitives" }
|
||||
|
||||
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-executor-wasmtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-executor = { path = "../../../../../substrate/client/executor" }
|
||||
sc-executor-common = { path = "../../../../../substrate/client/executor/common" }
|
||||
sc-executor-wasmtime = { path = "../../../../../substrate/client/executor/wasmtime" }
|
||||
sp-io = { path = "../../../../../substrate/primitives/io" }
|
||||
sp-maybe-compressed-blob = { path = "../../../../../substrate/primitives/maybe-compressed-blob" }
|
||||
sp-tracing = { path = "../../../../../substrate/primitives/tracing" }
|
||||
|
||||
[target.'cfg(target_os = "linux")'.dependencies]
|
||||
tikv-jemalloc-ctl = "0.5.0"
|
||||
|
||||
@@ -10,7 +10,7 @@ futures = "0.3.21"
|
||||
gum = { package = "tracing-gum", path = "../../gum" }
|
||||
lru = "0.11.0"
|
||||
|
||||
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-consensus-babe = { path = "../../../../substrate/primitives/consensus/babe" }
|
||||
|
||||
polkadot-primitives = { path = "../../../primitives" }
|
||||
polkadot-node-metrics = { path = "../../metrics" }
|
||||
@@ -18,9 +18,9 @@ polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
polkadot-node-subsystem-types = { path = "../../subsystem-types" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-api = { path = "../../../../substrate/primitives/api" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
async-trait = "0.1.57"
|
||||
futures = { version = "0.3.21", features = ["thread-pool"] }
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
|
||||
@@ -9,6 +9,6 @@ description = "Stick logs together with the TraceID as provided by tempo"
|
||||
[dependencies]
|
||||
coarsetime = "0.1.22"
|
||||
tracing = "0.1.35"
|
||||
jaeger = { path = "../jaeger", package = "polkadot-node-jaeger" }
|
||||
gum-proc-macro = { path = "./proc-macro", package = "tracing-gum-proc-macro" }
|
||||
jaeger = { package = "polkadot-node-jaeger" , path = "../jaeger" }
|
||||
gum-proc-macro = { package = "tracing-gum-proc-macro" , path = "proc-macro" }
|
||||
polkadot-primitives = { path = "../../primitives", features = ["std"] }
|
||||
|
||||
@@ -12,8 +12,8 @@ lazy_static = "1.4"
|
||||
parking_lot = "0.12.0"
|
||||
polkadot-primitives = { path = "../../primitives" }
|
||||
polkadot-node-primitives = { path = "../primitives" }
|
||||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-network = { path = "../../../substrate/client/network" }
|
||||
sp-core = { path = "../../../substrate/primitives/core" }
|
||||
thiserror = "1.0.31"
|
||||
tokio = "1.24.2"
|
||||
log = "0.4.17"
|
||||
|
||||
@@ -38,12 +38,12 @@ polkadot-primitives = { path = "../../primitives" }
|
||||
color-eyre = { version = "0.6.1", default-features = false }
|
||||
assert_matches = "1.5"
|
||||
async-trait = "0.1.57"
|
||||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keystore = { path = "../../../substrate/primitives/keystore" }
|
||||
sp-core = { path = "../../../substrate/primitives/core" }
|
||||
clap = { version = "4.0.9", features = ["derive"] }
|
||||
futures = "0.3.21"
|
||||
futures-timer = "3.0.2"
|
||||
gum = { package = "tracing-gum", path = "../gum/" }
|
||||
gum = { package = "tracing-gum", path = "../gum" }
|
||||
erasure = { package = "polkadot-erasure-coding", path = "../../erasure-coding" }
|
||||
rand = "0.8.5"
|
||||
|
||||
@@ -54,11 +54,11 @@ polkadot-node-core-pvf-prepare-worker = { path = "../core/pvf/prepare-worker" }
|
||||
|
||||
[dev-dependencies]
|
||||
polkadot-node-subsystem-test-helpers = { path = "../subsystem-test-helpers" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { path = "../../../substrate/primitives/core" }
|
||||
futures = { version = "0.3.21", features = ["thread-pool"] }
|
||||
|
||||
[build-dependencies]
|
||||
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
substrate-build-script-utils = { path = "../../../substrate/utils/build-script-utils" }
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
||||
@@ -14,13 +14,13 @@ gum = { package = "tracing-gum", path = "../gum" }
|
||||
metered = { package = "prioritized-metered-channel", version = "0.2.0" }
|
||||
|
||||
# Both `sc-service` and `sc-cli` are required by runtime metrics `logger_hook()`.
|
||||
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-service = { path = "../../../substrate/client/service" }
|
||||
sc-cli = { path = "../../../substrate/client/cli" }
|
||||
|
||||
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
substrate-prometheus-endpoint = { path = "../../../substrate/utils/prometheus" }
|
||||
sc-tracing = { path = "../../../substrate/client/tracing" }
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
primitives = { package = "polkadot-primitives", path = "../../primitives/" }
|
||||
primitives = { package = "polkadot-primitives", path = "../../primitives" }
|
||||
bs58 = { version = "0.4.0", features = ["alloc"] }
|
||||
log = "0.4.17"
|
||||
|
||||
@@ -30,9 +30,9 @@ tempfile = "3.2.0"
|
||||
hyper = { version = "0.14.20", default-features = false, features = ["http1", "tcp"] }
|
||||
tokio = "1.24.2"
|
||||
polkadot-test-service = { path = "../test/service", features=["runtime-metrics"]}
|
||||
substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
substrate-test-utils = { path = "../../../substrate/test-utils" }
|
||||
sc-service = { path = "../../../substrate/client/service" }
|
||||
sp-keyring = { path = "../../../substrate/primitives/keyring" }
|
||||
prometheus-parse = {version = "0.2.2"}
|
||||
|
||||
[features]
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -6,8 +6,8 @@ edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
client = { package = "sc-client-api", path = "../../../substrate/client/api" }
|
||||
sp-api = { path = "../../../substrate/primitives/api" }
|
||||
futures = "0.3.21"
|
||||
futures-timer = "3.0.2"
|
||||
parking_lot = "0.12.0"
|
||||
@@ -19,14 +19,14 @@ polkadot-primitives = { path = "../../primitives" }
|
||||
orchestra = "0.0.5"
|
||||
gum = { package = "tracing-gum", path = "../gum" }
|
||||
lru = "0.11.0"
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { path = "../../../substrate/primitives/core" }
|
||||
async-trait = "0.1.57"
|
||||
tikv-jemalloc-ctl = { version = "0.5.0", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
metered = { package = "prioritized-metered-channel", version = "0.2.0" }
|
||||
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { path = "../../../substrate/primitives/core" }
|
||||
futures = { version = "0.3.21", features = ["thread-pool"] }
|
||||
femme = "2.2.1"
|
||||
assert_matches = "1.4.0"
|
||||
|
||||
@@ -11,12 +11,12 @@ bounded-vec = "0.7"
|
||||
futures = "0.3.21"
|
||||
polkadot-primitives = { path = "../../primitives" }
|
||||
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { path = "../../../substrate/primitives/core" }
|
||||
sp-application-crypto = { path = "../../../substrate/primitives/application-crypto" }
|
||||
sp-consensus-babe = { path = "../../../substrate/primitives/consensus/babe" }
|
||||
sp-keystore = { path = "../../../substrate/primitives/keystore" }
|
||||
sp-maybe-compressed-blob = { path = "../../../substrate/primitives/maybe-compressed-blob" }
|
||||
sp-runtime = { path = "../../../substrate/primitives/runtime" }
|
||||
polkadot-parachain = { path = "../../parachain", default-features = false }
|
||||
schnorrkel = "0.9.1"
|
||||
thiserror = "1.0.31"
|
||||
|
||||
@@ -8,75 +8,75 @@ license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
# Substrate Client
|
||||
sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
beefy = { package = "sc-consensus-beefy", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
grandpa = { package = "sc-consensus-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
mmr-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master"}
|
||||
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-executor = { 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" }
|
||||
sc-network-sync = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||
telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-authority-discovery = { path = "../../../substrate/client/authority-discovery" }
|
||||
babe = { package = "sc-consensus-babe", path = "../../../substrate/client/consensus/babe" }
|
||||
beefy = { package = "sc-consensus-beefy", path = "../../../substrate/client/consensus/beefy" }
|
||||
grandpa = { package = "sc-consensus-grandpa", path = "../../../substrate/client/consensus/grandpa" }
|
||||
mmr-gadget = { path = "../../../substrate/client/merkle-mountain-range" }
|
||||
sp-mmr-primitives = { path = "../../../substrate/primitives/merkle-mountain-range" }
|
||||
sc-block-builder = { path = "../../../substrate/client/block-builder" }
|
||||
sc-chain-spec = { path = "../../../substrate/client/chain-spec" }
|
||||
sc-client-api = { path = "../../../substrate/client/api" }
|
||||
sc-client-db = { path = "../../../substrate/client/db" }
|
||||
sc-consensus = { path = "../../../substrate/client/consensus/common" }
|
||||
sc-consensus-slots = { path = "../../../substrate/client/consensus/slots" }
|
||||
sc-executor = { path = "../../../substrate/client/executor" }
|
||||
sc-network = { path = "../../../substrate/client/network" }
|
||||
sc-network-common = { path = "../../../substrate/client/network/common" }
|
||||
sc-network-sync = { path = "../../../substrate/client/network/sync" }
|
||||
sc-transaction-pool = { path = "../../../substrate/client/transaction-pool" }
|
||||
sc-transaction-pool-api = { path = "../../../substrate/client/transaction-pool/api" }
|
||||
sc-sync-state-rpc = { path = "../../../substrate/client/sync-state-rpc" }
|
||||
sc-keystore = { path = "../../../substrate/client/keystore" }
|
||||
sc-basic-authorship = { path = "../../../substrate/client/basic-authorship" }
|
||||
sc-offchain = { path = "../../../substrate/client/offchain" }
|
||||
sc-sysinfo = { path = "../../../substrate/client/sysinfo" }
|
||||
service = { package = "sc-service", path = "../../../substrate/client/service", default-features = false }
|
||||
telemetry = { package = "sc-telemetry", path = "../../../substrate/client/telemetry" }
|
||||
|
||||
# Substrate Primitives
|
||||
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
beefy-primitives = { package = "sp-consensus-beefy", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
grandpa_primitives = { package = "sp-consensus-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-weights = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-authority-discovery = { path = "../../../substrate/primitives/authority-discovery" }
|
||||
consensus_common = { package = "sp-consensus", path = "../../../substrate/primitives/consensus/common" }
|
||||
beefy-primitives = { package = "sp-consensus-beefy", path = "../../../substrate/primitives/consensus/beefy" }
|
||||
grandpa_primitives = { package = "sp-consensus-grandpa", path = "../../../substrate/primitives/consensus/grandpa" }
|
||||
sp-inherents = { path = "../../../substrate/primitives/inherents" }
|
||||
sp-keyring = { path = "../../../substrate/primitives/keyring" }
|
||||
sp-api = { path = "../../../substrate/primitives/api" }
|
||||
sp-block-builder = { path = "../../../substrate/primitives/block-builder" }
|
||||
sp-blockchain = { path = "../../../substrate/primitives/blockchain" }
|
||||
sp-core = { path = "../../../substrate/primitives/core" }
|
||||
sp-io = { path = "../../../substrate/primitives/io" }
|
||||
sp-keystore = { path = "../../../substrate/primitives/keystore" }
|
||||
sp-offchain = { package = "sp-offchain", path = "../../../substrate/primitives/offchain" }
|
||||
sp-runtime = { path = "../../../substrate/primitives/runtime" }
|
||||
sp-session = { path = "../../../substrate/primitives/session" }
|
||||
sp-storage = { path = "../../../substrate/primitives/storage" }
|
||||
sp-transaction-pool = { path = "../../../substrate/primitives/transaction-pool" }
|
||||
pallet-transaction-payment = { path = "../../../substrate/frame/transaction-payment" }
|
||||
sp-timestamp = { path = "../../../substrate/primitives/timestamp" }
|
||||
sp-consensus-babe = { path = "../../../substrate/primitives/consensus/babe" }
|
||||
sp-state-machine = { path = "../../../substrate/primitives/state-machine" }
|
||||
sp-weights = { path = "../../../substrate/primitives/weights" }
|
||||
sp-version = { path = "../../../substrate/primitives/version" }
|
||||
|
||||
# Substrate Pallets
|
||||
pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
pallet-babe = { path = "../../../substrate/frame/babe" }
|
||||
pallet-im-online = { path = "../../../substrate/frame/im-online" }
|
||||
pallet-staking = { path = "../../../substrate/frame/staking" }
|
||||
pallet-transaction-payment-rpc-runtime-api = { path = "../../../substrate/frame/transaction-payment/rpc/runtime-api" }
|
||||
frame-system = { path = "../../../substrate/frame/system" }
|
||||
|
||||
# Substrate Other
|
||||
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
frame-system-rpc-runtime-api = { path = "../../../substrate/frame/system/rpc/runtime-api" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../substrate/utils/prometheus" }
|
||||
frame-support = { path = "../../../substrate/frame/support" }
|
||||
frame-benchmarking-cli = { path = "../../../substrate/utils/frame/benchmarking-cli" }
|
||||
frame-benchmarking = { path = "../../../substrate/frame/benchmarking" }
|
||||
|
||||
# External Crates
|
||||
futures = "0.3.21"
|
||||
hex-literal = "0.4.1"
|
||||
gum = { package = "tracing-gum", path = "../gum/" }
|
||||
gum = { package = "tracing-gum", path = "../gum" }
|
||||
serde = { version = "1.0.163", features = ["derive"] }
|
||||
serde_json = "1.0.96"
|
||||
thiserror = "1.0.31"
|
||||
@@ -98,7 +98,7 @@ polkadot-parachain = { path = "../../parachain" }
|
||||
polkadot-primitives = { path = "../../primitives" }
|
||||
polkadot-node-primitives = { path = "../primitives" }
|
||||
polkadot-rpc = { path = "../../rpc" }
|
||||
polkadot-node-subsystem = {path = "../subsystem" }
|
||||
polkadot-node-subsystem = { path = "../subsystem" }
|
||||
polkadot-node-subsystem-util = { path = "../subsystem-util" }
|
||||
polkadot-node-subsystem-types = { path = "../subsystem-types" }
|
||||
polkadot-runtime-parachains = { path = "../../runtime/parachains" }
|
||||
|
||||
@@ -14,11 +14,11 @@ parking_lot = "0.12.0"
|
||||
polkadot-node-subsystem = { path = "../subsystem" }
|
||||
polkadot-node-subsystem-util = { path = "../subsystem-util" }
|
||||
polkadot-primitives = { path = "../../primitives" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-keystore = { 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" }
|
||||
sp-core = { path = "../../../substrate/primitives/core" }
|
||||
sp-keystore = { path = "../../../substrate/primitives/keystore" }
|
||||
sc-keystore = { path = "../../../substrate/client/keystore" }
|
||||
sp-keyring = { path = "../../../substrate/primitives/keyring" }
|
||||
sp-application-crypto = { path = "../../../substrate/primitives/application-crypto" }
|
||||
|
||||
[dev-dependencies]
|
||||
polkadot-overseer = { path = "../overseer" }
|
||||
|
||||
@@ -15,12 +15,12 @@ polkadot-node-network-protocol = { path = "../network/protocol" }
|
||||
polkadot-statement-table = { path = "../../statement-table" }
|
||||
polkadot-node-jaeger = { path = "../jaeger" }
|
||||
orchestra = "0.0.5"
|
||||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-network = { path = "../../../substrate/client/network" }
|
||||
sp-api = { path = "../../../substrate/primitives/api" }
|
||||
sp-consensus-babe = { path = "../../../substrate/primitives/consensus/babe" }
|
||||
sp-authority-discovery = { path = "../../../substrate/primitives/authority-discovery" }
|
||||
sc-transaction-pool-api = { path = "../../../substrate/client/transaction-pool/api" }
|
||||
smallvec = "1.8.0"
|
||||
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
substrate-prometheus-endpoint = { path = "../../../substrate/utils/prometheus" }
|
||||
thiserror = "1.0.31"
|
||||
async-trait = "0.1.57"
|
||||
|
||||
@@ -21,7 +21,7 @@ gum = { package = "tracing-gum", path = "../gum" }
|
||||
derive_more = "0.99.17"
|
||||
lru = "0.11.0"
|
||||
|
||||
polkadot-node-subsystem = {path = "../subsystem" }
|
||||
polkadot-node-subsystem = { path = "../subsystem" }
|
||||
polkadot-node-jaeger = { path = "../jaeger" }
|
||||
polkadot-node-metrics = { path = "../metrics" }
|
||||
polkadot-node-network-protocol = { path = "../network/protocol" }
|
||||
@@ -30,9 +30,9 @@ polkadot-node-primitives = { path = "../primitives" }
|
||||
polkadot-overseer = { path = "../overseer" }
|
||||
metered = { package = "prioritized-metered-channel", version = "0.2.0" }
|
||||
|
||||
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-core = { path = "../../../substrate/primitives/core" }
|
||||
sp-application-crypto = { path = "../../../substrate/primitives/application-crypto" }
|
||||
sp-keystore = { path = "../../../substrate/primitives/keystore" }
|
||||
|
||||
kvdb = "0.13.0"
|
||||
parity-db = { version = "0.4.8"}
|
||||
|
||||
@@ -16,25 +16,25 @@ polkadot-primitives = { path = "../../../primitives" }
|
||||
polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
|
||||
# Substrate dependencies
|
||||
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
substrate-test-client = { path = "../../../../substrate/test-utils/client" }
|
||||
sc-service = { path = "../../../../substrate/client/service" }
|
||||
sc-block-builder = { path = "../../../../substrate/client/block-builder" }
|
||||
sc-consensus = { path = "../../../../substrate/client/consensus/common" }
|
||||
sc-offchain = { path = "../../../../substrate/client/offchain" }
|
||||
sp-blockchain = { path = "../../../../substrate/primitives/blockchain" }
|
||||
sp-runtime = { path = "../../../../substrate/primitives/runtime" }
|
||||
sp-inherents = { path = "../../../../substrate/primitives/inherents" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
sp-api = { path = "../../../../substrate/primitives/api" }
|
||||
sp-timestamp = { path = "../../../../substrate/primitives/timestamp" }
|
||||
sp-consensus = { path = "../../../../substrate/primitives/consensus/common" }
|
||||
sp-consensus-babe = { path = "../../../../substrate/primitives/consensus/babe" }
|
||||
sp-state-machine = { path = "../../../../substrate/primitives/state-machine" }
|
||||
sp-io = { path = "../../../../substrate/primitives/io" }
|
||||
frame-benchmarking = { path = "../../../../substrate/frame/benchmarking" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
futures = "0.3.21"
|
||||
|
||||
[features]
|
||||
|
||||
@@ -17,8 +17,8 @@ polkadot-erasure-coding = { path = "../../../erasure-coding" }
|
||||
polkadot-node-primitives = { path = "../../primitives" }
|
||||
polkadot-primitives = { path = "../../../primitives" }
|
||||
|
||||
sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-executor-common = { path = "../../../../substrate/client/executor/common" }
|
||||
sp-maybe-compressed-blob = { path = "../../../../substrate/primitives/maybe-compressed-blob" }
|
||||
|
||||
kusama-runtime = { path = "../../../runtime/kusama" }
|
||||
|
||||
|
||||
@@ -28,38 +28,38 @@ test-runtime-constants = { path = "../../../runtime/test-runtime/constants" }
|
||||
polkadot-runtime-parachains = { path = "../../../runtime/parachains" }
|
||||
|
||||
# Substrate dependencies
|
||||
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
grandpa = { package = "sc-consensus-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
grandpa_primitives = { package = "sp-consensus-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||
sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
sp-authority-discovery = { path = "../../../../substrate/primitives/authority-discovery" }
|
||||
sc-authority-discovery = { path = "../../../../substrate/client/authority-discovery" }
|
||||
babe = { package = "sc-consensus-babe", path = "../../../../substrate/client/consensus/babe" }
|
||||
babe-primitives = { package = "sp-consensus-babe", path = "../../../../substrate/primitives/consensus/babe" }
|
||||
consensus_common = { package = "sp-consensus", path = "../../../../substrate/primitives/consensus/common" }
|
||||
frame-system = { path = "../../../../substrate/frame/system" }
|
||||
grandpa = { package = "sc-consensus-grandpa", path = "../../../../substrate/client/consensus/grandpa" }
|
||||
grandpa_primitives = { package = "sp-consensus-grandpa", path = "../../../../substrate/primitives/consensus/grandpa" }
|
||||
inherents = { package = "sp-inherents", path = "../../../../substrate/primitives/inherents" }
|
||||
pallet-staking = { path = "../../../../substrate/frame/staking" }
|
||||
pallet-balances = { path = "../../../../substrate/frame/balances" }
|
||||
pallet-transaction-payment = { path = "../../../../substrate/frame/transaction-payment" }
|
||||
sc-chain-spec = { path = "../../../../substrate/client/chain-spec" }
|
||||
sc-cli = { path = "../../../../substrate/client/cli" }
|
||||
sc-client-api = { path = "../../../../substrate/client/api" }
|
||||
sc-consensus = { path = "../../../../substrate/client/consensus/common" }
|
||||
sc-network = { path = "../../../../substrate/client/network" }
|
||||
sc-tracing = { path = "../../../../substrate/client/tracing" }
|
||||
sc-transaction-pool = { path = "../../../../substrate/client/transaction-pool" }
|
||||
sc-service = { path = "../../../../substrate/client/service", default-features = false }
|
||||
sp-arithmetic = { path = "../../../../substrate/primitives/arithmetic" }
|
||||
sp-blockchain = { path = "../../../../substrate/primitives/blockchain" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
sp-runtime = { path = "../../../../substrate/primitives/runtime" }
|
||||
sp-state-machine = { path = "../../../../substrate/primitives/state-machine" }
|
||||
substrate-test-client = { path = "../../../../substrate/test-utils/client" }
|
||||
|
||||
[dev-dependencies]
|
||||
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||
pallet-balances = { path = "../../../../substrate/frame/balances", default-features = false }
|
||||
serde_json = "1.0.96"
|
||||
substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||
substrate-test-utils = { path = "../../../../substrate/test-utils" }
|
||||
tokio = { version = "1.24.2", features = ["macros"] }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -17,6 +17,6 @@ lazy_static = "1.4.0"
|
||||
parity-scale-codec = { version = "3.6.1", features = ["derive"] }
|
||||
reqwest = { version = "0.11", features = ["rustls-tls"], default-features = false }
|
||||
thiserror = "1.0.31"
|
||||
gum = { package = "tracing-gum", path = "../gum/" }
|
||||
gum = { package = "tracing-gum", path = "../gum" }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
|
||||
Reference in New Issue
Block a user