mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 07:01:05 +00:00
@@ -20,51 +20,51 @@ name = "node-template"
|
||||
clap = { version = "4.2.5", features = ["derive"] }
|
||||
futures = { version = "0.3.21", features = ["thread-pool"]}
|
||||
|
||||
sc-cli = { version = "0.10.0-dev", path = "../../../client/cli" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../../../client/network" }
|
||||
sc-service = { version = "0.10.0-dev", path = "../../../client/service" }
|
||||
sc-telemetry = { version = "4.0.0-dev", path = "../../../client/telemetry" }
|
||||
sc-transaction-pool = { version = "4.0.0-dev", path = "../../../client/transaction-pool" }
|
||||
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../../client/transaction-pool/api" }
|
||||
sc-offchain = { version = "4.0.0-dev", path = "../../../client/offchain" }
|
||||
sc-consensus-aura = { version = "0.10.0-dev", path = "../../../client/consensus/aura" }
|
||||
sp-consensus-aura = { version = "0.10.0-dev", path = "../../../primitives/consensus/aura" }
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" }
|
||||
sc-consensus-grandpa = { version = "0.10.0-dev", path = "../../../client/consensus/grandpa" }
|
||||
sp-consensus-grandpa = { version = "4.0.0-dev", path = "../../../primitives/consensus/grandpa" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
sp-io = { version = "23.0.0", path = "../../../primitives/io" }
|
||||
sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" }
|
||||
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
|
||||
sp-keyring = { version = "24.0.0", path = "../../../primitives/keyring" }
|
||||
frame-system = { version = "4.0.0-dev", path = "../../../frame/system" }
|
||||
pallet-transaction-payment = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-payment" }
|
||||
sc-cli = { path = "../../../client/cli" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sc-executor = { path = "../../../client/executor" }
|
||||
sc-network = { path = "../../../client/network" }
|
||||
sc-service = { path = "../../../client/service" }
|
||||
sc-telemetry = { path = "../../../client/telemetry" }
|
||||
sc-transaction-pool = { path = "../../../client/transaction-pool" }
|
||||
sc-transaction-pool-api = { path = "../../../client/transaction-pool/api" }
|
||||
sc-offchain = { path = "../../../client/offchain" }
|
||||
sc-consensus-aura = { path = "../../../client/consensus/aura" }
|
||||
sp-consensus-aura = { path = "../../../primitives/consensus/aura" }
|
||||
sc-consensus = { path = "../../../client/consensus/common" }
|
||||
sc-consensus-grandpa = { path = "../../../client/consensus/grandpa" }
|
||||
sp-consensus-grandpa = { path = "../../../primitives/consensus/grandpa" }
|
||||
sc-client-api = { path = "../../../client/api" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
sp-io = { path = "../../../primitives/io" }
|
||||
sp-timestamp = { path = "../../../primitives/timestamp" }
|
||||
sp-inherents = { path = "../../../primitives/inherents" }
|
||||
sp-keyring = { path = "../../../primitives/keyring" }
|
||||
frame-system = { path = "../../../frame/system" }
|
||||
pallet-transaction-payment = { path = "../../../frame/transaction-payment", default-features = false}
|
||||
|
||||
# These dependencies are used for the node template's RPCs
|
||||
jsonrpsee = { version = "0.16.2", features = ["server"] }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
sc-rpc-api = { version = "0.10.0-dev", path = "../../../client/rpc-api" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" }
|
||||
sc-basic-authorship = { version = "0.10.0-dev", path = "../../../client/basic-authorship" }
|
||||
substrate-frame-rpc-system = { version = "4.0.0-dev", path = "../../../utils/frame/rpc/system" }
|
||||
pallet-transaction-payment-rpc = { version = "4.0.0-dev", path = "../../../frame/transaction-payment/rpc/" }
|
||||
sp-api = { path = "../../../primitives/api" }
|
||||
sc-rpc-api = { path = "../../../client/rpc-api" }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-block-builder = { path = "../../../primitives/block-builder" }
|
||||
sc-basic-authorship = { path = "../../../client/basic-authorship" }
|
||||
substrate-frame-rpc-system = { path = "../../../utils/frame/rpc/system" }
|
||||
pallet-transaction-payment-rpc = { path = "../../../frame/transaction-payment/rpc" }
|
||||
|
||||
# These dependencies are used for runtime benchmarking
|
||||
frame-benchmarking = { version = "4.0.0-dev", path = "../../../frame/benchmarking" }
|
||||
frame-benchmarking-cli = { version = "4.0.0-dev", path = "../../../utils/frame/benchmarking-cli" }
|
||||
frame-benchmarking = { path = "../../../frame/benchmarking" }
|
||||
frame-benchmarking-cli = { path = "../../../utils/frame/benchmarking-cli" }
|
||||
|
||||
# Local Dependencies
|
||||
node-template-runtime = { version = "4.0.0-dev", path = "../runtime" }
|
||||
node-template-runtime = { path = "../runtime" }
|
||||
|
||||
# CLI-specific dependencies
|
||||
try-runtime-cli = { version = "0.10.0-dev", optional = true, path = "../../../utils/frame/try-runtime/cli" }
|
||||
try-runtime-cli = { path = "../../../utils/frame/try-runtime/cli", optional = true}
|
||||
|
||||
[build-dependencies]
|
||||
substrate-build-script-utils = { version = "3.0.0", path = "../../../utils/build-script-utils" }
|
||||
substrate-build-script-utils = { path = "../../../utils/build-script-utils" }
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
||||
@@ -17,15 +17,15 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
|
||||
"derive",
|
||||
] }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, optional = true, path = "../../../../frame/benchmarking" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../../../frame/support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../../frame/system" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../../../primitives/std" }
|
||||
frame-benchmarking = { path = "../../../../frame/benchmarking", default-features = false, optional = true}
|
||||
frame-support = { path = "../../../../frame/support", default-features = false}
|
||||
frame-system = { path = "../../../../frame/system", default-features = false}
|
||||
sp-std = { path = "../../../../primitives/std", default-features = false}
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "21.0.0", path = "../../../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", path = "../../../../primitives/io" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../../primitives/runtime" }
|
||||
sp-core = { path = "../../../../primitives/core" }
|
||||
sp-io = { path = "../../../../primitives/io" }
|
||||
sp-runtime = { path = "../../../../primitives/runtime" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -16,43 +16,43 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
|
||||
pallet-aura = { version = "4.0.0-dev", default-features = false, path = "../../../frame/aura" }
|
||||
pallet-balances = { version = "4.0.0-dev", default-features = false, path = "../../../frame/balances" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../../frame/support" }
|
||||
pallet-grandpa = { version = "4.0.0-dev", default-features = false, path = "../../../frame/grandpa" }
|
||||
pallet-sudo = { version = "4.0.0-dev", default-features = false, path = "../../../frame/sudo" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system" }
|
||||
frame-try-runtime = { version = "0.10.0-dev", default-features = false, path = "../../../frame/try-runtime", optional = true }
|
||||
pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../../frame/timestamp" }
|
||||
pallet-transaction-payment = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-payment" }
|
||||
frame-executive = { version = "4.0.0-dev", default-features = false, path = "../../../frame/executive" }
|
||||
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/api" }
|
||||
sp-block-builder = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/block-builder"}
|
||||
sp-consensus-aura = { version = "0.10.0-dev", default-features = false, path = "../../../primitives/consensus/aura" }
|
||||
sp-consensus-grandpa = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/consensus/grandpa" }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/inherents"}
|
||||
sp-offchain = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/offchain" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-session = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/session" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../../primitives/std" }
|
||||
sp-storage = { version = "13.0.0", default-features = false, path = "../../../primitives/storage" }
|
||||
sp-transaction-pool = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/transaction-pool" }
|
||||
sp-version = { version = "22.0.0", default-features = false, path = "../../../primitives/version" }
|
||||
pallet-aura = { path = "../../../frame/aura", default-features = false}
|
||||
pallet-balances = { path = "../../../frame/balances", default-features = false}
|
||||
frame-support = { path = "../../../frame/support", default-features = false}
|
||||
pallet-grandpa = { path = "../../../frame/grandpa", default-features = false}
|
||||
pallet-sudo = { path = "../../../frame/sudo", default-features = false}
|
||||
frame-system = { path = "../../../frame/system", default-features = false}
|
||||
frame-try-runtime = { path = "../../../frame/try-runtime", default-features = false, optional = true }
|
||||
pallet-timestamp = { path = "../../../frame/timestamp", default-features = false}
|
||||
pallet-transaction-payment = { path = "../../../frame/transaction-payment", default-features = false}
|
||||
frame-executive = { path = "../../../frame/executive", default-features = false}
|
||||
sp-api = { path = "../../../primitives/api", default-features = false}
|
||||
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false}
|
||||
sp-consensus-aura = { path = "../../../primitives/consensus/aura", default-features = false}
|
||||
sp-consensus-grandpa = { path = "../../../primitives/consensus/grandpa", default-features = false}
|
||||
sp-core = { path = "../../../primitives/core", default-features = false}
|
||||
sp-inherents = { path = "../../../primitives/inherents", default-features = false}
|
||||
sp-offchain = { path = "../../../primitives/offchain", default-features = false}
|
||||
sp-runtime = { path = "../../../primitives/runtime", default-features = false}
|
||||
sp-session = { path = "../../../primitives/session", default-features = false}
|
||||
sp-std = { path = "../../../primitives/std", default-features = false}
|
||||
sp-storage = { path = "../../../primitives/storage", default-features = false}
|
||||
sp-transaction-pool = { path = "../../../primitives/transaction-pool", default-features = false}
|
||||
sp-version = { path = "../../../primitives/version", default-features = false}
|
||||
|
||||
# Used for the node template's RPCs
|
||||
frame-system-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
|
||||
pallet-transaction-payment-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
|
||||
frame-system-rpc-runtime-api = { path = "../../../frame/system/rpc/runtime-api", default-features = false}
|
||||
pallet-transaction-payment-rpc-runtime-api = { path = "../../../frame/transaction-payment/rpc/runtime-api", default-features = false}
|
||||
|
||||
# Used for runtime benchmarking
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../../frame/benchmarking", optional = true }
|
||||
frame-system-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system/benchmarking", optional = true }
|
||||
frame-benchmarking = { path = "../../../frame/benchmarking", default-features = false, optional = true }
|
||||
frame-system-benchmarking = { path = "../../../frame/system/benchmarking", default-features = false, optional = true }
|
||||
|
||||
# Local Dependencies
|
||||
pallet-template = { version = "4.0.0-dev", default-features = false, path = "../pallets/template" }
|
||||
pallet-template = { path = "../pallets/template", default-features = false}
|
||||
|
||||
[build-dependencies]
|
||||
substrate-wasm-builder = { version = "5.0.0-dev", path = "../../../utils/wasm-builder", optional = true }
|
||||
substrate-wasm-builder = { path = "../../../utils/wasm-builder", optional = true }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -15,30 +15,30 @@ publish = false
|
||||
array-bytes = "6.1"
|
||||
clap = { version = "4.2.5", features = ["derive"] }
|
||||
log = "0.4.17"
|
||||
node-primitives = { version = "2.0.0", path = "../primitives" }
|
||||
node-testing = { version = "3.0.0-dev", path = "../testing" }
|
||||
kitchensink-runtime = { version = "3.0.0-dev", path = "../runtime" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api/" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
sp-state-machine = { version = "0.28.0", path = "../../../primitives/state-machine" }
|
||||
node-primitives = { path = "../primitives" }
|
||||
node-testing = { path = "../testing" }
|
||||
kitchensink-runtime = { path = "../runtime" }
|
||||
sc-client-api = { path = "../../../client/api" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
sp-state-machine = { path = "../../../primitives/state-machine" }
|
||||
serde = "1.0.163"
|
||||
serde_json = "1.0.85"
|
||||
derive_more = { version = "0.99.17", default-features = false, features = ["display"] }
|
||||
kvdb = "0.13.0"
|
||||
kvdb-rocksdb = "0.19.0"
|
||||
sp-trie = { version = "22.0.0", path = "../../../primitives/trie" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
||||
sc-basic-authorship = { version = "0.10.0-dev", path = "../../../client/basic-authorship" }
|
||||
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
|
||||
sp-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/timestamp" }
|
||||
sp-tracing = { version = "10.0.0", path = "../../../primitives/tracing" }
|
||||
sp-trie = { path = "../../../primitives/trie" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-consensus = { path = "../../../primitives/consensus/common" }
|
||||
sc-basic-authorship = { path = "../../../client/basic-authorship" }
|
||||
sp-inherents = { path = "../../../primitives/inherents" }
|
||||
sp-timestamp = { path = "../../../primitives/timestamp", default-features = false}
|
||||
sp-tracing = { path = "../../../primitives/tracing" }
|
||||
hash-db = "0.16.0"
|
||||
tempfile = "3.1.0"
|
||||
fs_extra = "1"
|
||||
rand = { version = "0.8.5", features = ["small_rng"] }
|
||||
lazy_static = "1.4.0"
|
||||
parity-db = "0.4.8"
|
||||
sc-transaction-pool = { version = "4.0.0-dev", path = "../../../client/transaction-pool" }
|
||||
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../../client/transaction-pool/api" }
|
||||
sc-transaction-pool = { path = "../../../client/transaction-pool" }
|
||||
sc-transaction-pool-api = { path = "../../../client/transaction-pool/api" }
|
||||
futures = { version = "0.3.21", features = ["thread-pool"] }
|
||||
|
||||
@@ -47,77 +47,77 @@ log = "0.4.17"
|
||||
rand = "0.8"
|
||||
|
||||
# primitives
|
||||
sp-authority-discovery = { version = "4.0.0-dev", path = "../../../primitives/authority-discovery" }
|
||||
sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" }
|
||||
grandpa-primitives = { version = "4.0.0-dev", package = "sp-consensus-grandpa", path = "../../../primitives/consensus/grandpa" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" }
|
||||
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
|
||||
sp-keyring = { version = "24.0.0", path = "../../../primitives/keyring" }
|
||||
sp-keystore = { version = "0.27.0", path = "../../../primitives/keystore" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
||||
sp-transaction-storage-proof = { version = "4.0.0-dev", path = "../../../primitives/transaction-storage-proof" }
|
||||
sp-authority-discovery = { path = "../../../primitives/authority-discovery" }
|
||||
sp-consensus-babe = { path = "../../../primitives/consensus/babe" }
|
||||
grandpa-primitives = { package = "sp-consensus-grandpa", path = "../../../primitives/consensus/grandpa" }
|
||||
sp-api = { path = "../../../primitives/api" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
sp-timestamp = { path = "../../../primitives/timestamp" }
|
||||
sp-inherents = { path = "../../../primitives/inherents" }
|
||||
sp-keyring = { path = "../../../primitives/keyring" }
|
||||
sp-keystore = { path = "../../../primitives/keystore" }
|
||||
sp-consensus = { path = "../../../primitives/consensus/common" }
|
||||
sp-transaction-storage-proof = { path = "../../../primitives/transaction-storage-proof" }
|
||||
sp-io = { path = "../../../primitives/io" }
|
||||
sp-statement-store = { path = "../../../primitives/statement-store" }
|
||||
|
||||
# client dependencies
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" }
|
||||
sc-chain-spec = { version = "4.0.0-dev", path = "../../../client/chain-spec" }
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" }
|
||||
sc-transaction-pool = { version = "4.0.0-dev", path = "../../../client/transaction-pool" }
|
||||
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../../client/transaction-pool/api" }
|
||||
sc-statement-store = { version = "4.0.0-dev", path = "../../../client/statement-store" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../../../client/network" }
|
||||
sc-network-common = { version = "0.10.0-dev", path = "../../../client/network/common" }
|
||||
sc-network-sync = { version = "0.10.0-dev", path = "../../../client/network/sync" }
|
||||
sc-network-statement = { version = "0.10.0-dev", path = "../../../client/network/statement" }
|
||||
sc-consensus-slots = { version = "0.10.0-dev", path = "../../../client/consensus/slots" }
|
||||
sc-consensus-babe = { version = "0.10.0-dev", path = "../../../client/consensus/babe" }
|
||||
grandpa = { version = "0.10.0-dev", package = "sc-consensus-grandpa", path = "../../../client/consensus/grandpa" }
|
||||
sc-rpc = { version = "4.0.0-dev", path = "../../../client/rpc" }
|
||||
sc-basic-authorship = { version = "0.10.0-dev", path = "../../../client/basic-authorship" }
|
||||
sc-service = { version = "0.10.0-dev", default-features = false, path = "../../../client/service" }
|
||||
sc-telemetry = { version = "4.0.0-dev", path = "../../../client/telemetry" }
|
||||
sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" }
|
||||
sc-authority-discovery = { version = "0.10.0-dev", path = "../../../client/authority-discovery" }
|
||||
sc-sync-state-rpc = { version = "0.10.0-dev", path = "../../../client/sync-state-rpc" }
|
||||
sc-sysinfo = { version = "6.0.0-dev", path = "../../../client/sysinfo" }
|
||||
sc-storage-monitor = { version = "0.1.0", path = "../../../client/storage-monitor" }
|
||||
sc-offchain = { version = "4.0.0-dev", path = "../../../client/offchain" }
|
||||
sc-client-api = { path = "../../../client/api" }
|
||||
sc-chain-spec = { path = "../../../client/chain-spec" }
|
||||
sc-consensus = { path = "../../../client/consensus/common" }
|
||||
sc-transaction-pool = { path = "../../../client/transaction-pool" }
|
||||
sc-transaction-pool-api = { path = "../../../client/transaction-pool/api" }
|
||||
sc-statement-store = { path = "../../../client/statement-store" }
|
||||
sc-network = { path = "../../../client/network" }
|
||||
sc-network-common = { path = "../../../client/network/common" }
|
||||
sc-network-sync = { path = "../../../client/network/sync" }
|
||||
sc-network-statement = { path = "../../../client/network/statement" }
|
||||
sc-consensus-slots = { path = "../../../client/consensus/slots" }
|
||||
sc-consensus-babe = { path = "../../../client/consensus/babe" }
|
||||
grandpa = { package = "sc-consensus-grandpa", path = "../../../client/consensus/grandpa" }
|
||||
sc-rpc = { path = "../../../client/rpc" }
|
||||
sc-basic-authorship = { path = "../../../client/basic-authorship" }
|
||||
sc-service = { path = "../../../client/service", default-features = false}
|
||||
sc-telemetry = { path = "../../../client/telemetry" }
|
||||
sc-executor = { path = "../../../client/executor" }
|
||||
sc-authority-discovery = { path = "../../../client/authority-discovery" }
|
||||
sc-sync-state-rpc = { path = "../../../client/sync-state-rpc" }
|
||||
sc-sysinfo = { path = "../../../client/sysinfo" }
|
||||
sc-storage-monitor = { path = "../../../client/storage-monitor" }
|
||||
sc-offchain = { path = "../../../client/offchain" }
|
||||
|
||||
# frame dependencies
|
||||
frame-system = { version = "4.0.0-dev", path = "../../../frame/system" }
|
||||
frame-system-rpc-runtime-api = { version = "4.0.0-dev", path = "../../../frame/system/rpc/runtime-api" }
|
||||
pallet-assets = { version = "4.0.0-dev", path = "../../../frame/assets/" }
|
||||
pallet-asset-conversion-tx-payment = { version = "4.0.0-dev", path = "../../../frame/transaction-payment/asset-conversion-tx-payment" }
|
||||
pallet-asset-tx-payment = { version = "4.0.0-dev", path = "../../../frame/transaction-payment/asset-tx-payment" }
|
||||
pallet-im-online = { version = "4.0.0-dev", default-features = false, path = "../../../frame/im-online" }
|
||||
frame-system = { path = "../../../frame/system" }
|
||||
frame-system-rpc-runtime-api = { path = "../../../frame/system/rpc/runtime-api" }
|
||||
pallet-assets = { path = "../../../frame/assets" }
|
||||
pallet-asset-conversion-tx-payment = { path = "../../../frame/transaction-payment/asset-conversion-tx-payment" }
|
||||
pallet-asset-tx-payment = { path = "../../../frame/transaction-payment/asset-tx-payment" }
|
||||
pallet-im-online = { path = "../../../frame/im-online", default-features = false}
|
||||
|
||||
# node-specific dependencies
|
||||
kitchensink-runtime = { version = "3.0.0-dev", path = "../runtime" }
|
||||
node-rpc = { version = "3.0.0-dev", path = "../rpc" }
|
||||
node-primitives = { version = "2.0.0", path = "../primitives" }
|
||||
node-executor = { version = "3.0.0-dev", path = "../executor" }
|
||||
kitchensink-runtime = { path = "../runtime" }
|
||||
node-rpc = { path = "../rpc" }
|
||||
node-primitives = { path = "../primitives" }
|
||||
node-executor = { path = "../executor" }
|
||||
|
||||
# CLI-specific dependencies
|
||||
sc-cli = { version = "0.10.0-dev", optional = true, path = "../../../client/cli" }
|
||||
frame-benchmarking-cli = { version = "4.0.0-dev", optional = true, path = "../../../utils/frame/benchmarking-cli" }
|
||||
node-inspect = { version = "0.9.0-dev", optional = true, path = "../inspect" }
|
||||
try-runtime-cli = { version = "0.10.0-dev", optional = true, path = "../../../utils/frame/try-runtime/cli" }
|
||||
sc-cli = { path = "../../../client/cli", optional = true}
|
||||
frame-benchmarking-cli = { path = "../../../utils/frame/benchmarking-cli", optional = true}
|
||||
node-inspect = { path = "../inspect", optional = true}
|
||||
try-runtime-cli = { path = "../../../utils/frame/try-runtime/cli", optional = true}
|
||||
serde_json = "1.0.85"
|
||||
|
||||
[dev-dependencies]
|
||||
sc-keystore = { version = "4.0.0-dev", path = "../../../client/keystore" }
|
||||
sc-client-db = { version = "0.10.0-dev", path = "../../../client/db" }
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" }
|
||||
sc-consensus-babe = { version = "0.10.0-dev", path = "../../../client/consensus/babe" }
|
||||
sc-consensus-epochs = { version = "0.10.0-dev", path = "../../../client/consensus/epochs" }
|
||||
sc-service-test = { version = "2.0.0", path = "../../../client/service/test" }
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../../../client/block-builder" }
|
||||
sp-tracing = { version = "10.0.0", path = "../../../primitives/tracing" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sc-keystore = { path = "../../../client/keystore" }
|
||||
sc-client-db = { path = "../../../client/db" }
|
||||
sc-consensus = { path = "../../../client/consensus/common" }
|
||||
sc-consensus-babe = { path = "../../../client/consensus/babe" }
|
||||
sc-consensus-epochs = { path = "../../../client/consensus/epochs" }
|
||||
sc-service-test = { path = "../../../client/service/test" }
|
||||
sc-block-builder = { path = "../../../client/block-builder" }
|
||||
sp-tracing = { path = "../../../primitives/tracing" }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
futures = "0.3.21"
|
||||
tempfile = "3.1.0"
|
||||
assert_cmd = "2.0.2"
|
||||
@@ -131,20 +131,20 @@ tokio = { version = "1.22.0", features = ["macros", "time", "parking_lot"] }
|
||||
tokio-util = { version = "0.7.4", features = ["compat"] }
|
||||
wait-timeout = "0.2"
|
||||
substrate-rpc-client = { path = "../../../utils/frame/rpc/client" }
|
||||
pallet-timestamp = { version = "4.0.0-dev", path = "../../../frame/timestamp" }
|
||||
pallet-timestamp = { path = "../../../frame/timestamp" }
|
||||
substrate-cli-test-utils = { path = "../../../test-utils/cli" }
|
||||
|
||||
[build-dependencies]
|
||||
clap = { version = "4.2.5", optional = true }
|
||||
clap_complete = { version = "4.0.2", optional = true }
|
||||
node-inspect = { version = "0.9.0-dev", optional = true, path = "../inspect" }
|
||||
frame-benchmarking-cli = { version = "4.0.0-dev", optional = true, path = "../../../utils/frame/benchmarking-cli" }
|
||||
substrate-build-script-utils = { version = "3.0.0", optional = true, path = "../../../utils/build-script-utils" }
|
||||
substrate-frame-cli = { version = "4.0.0-dev", optional = true, path = "../../../utils/frame/frame-utilities-cli" }
|
||||
try-runtime-cli = { version = "0.10.0-dev", optional = true, path = "../../../utils/frame/try-runtime/cli" }
|
||||
sc-cli = { version = "0.10.0-dev", path = "../../../client/cli", optional = true }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../../../frame/balances" }
|
||||
sc-storage-monitor = { version = "0.1.0", path = "../../../client/storage-monitor" }
|
||||
node-inspect = { path = "../inspect", optional = true}
|
||||
frame-benchmarking-cli = { path = "../../../utils/frame/benchmarking-cli", optional = true}
|
||||
substrate-build-script-utils = { path = "../../../utils/build-script-utils", optional = true}
|
||||
substrate-frame-cli = { path = "../../../utils/frame/frame-utilities-cli", optional = true}
|
||||
try-runtime-cli = { path = "../../../utils/frame/try-runtime/cli", optional = true}
|
||||
sc-cli = { path = "../../../client/cli", optional = true }
|
||||
pallet-balances = { path = "../../../frame/balances" }
|
||||
sc-storage-monitor = { path = "../../../client/storage-monitor" }
|
||||
|
||||
[features]
|
||||
default = [ "cli" ]
|
||||
|
||||
@@ -15,38 +15,38 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
scale-info = { version = "2.5.0", features = ["derive"] }
|
||||
frame-benchmarking = { version = "4.0.0-dev", path = "../../../frame/benchmarking" }
|
||||
node-primitives = { version = "2.0.0", path = "../primitives" }
|
||||
kitchensink-runtime = { version = "3.0.0-dev", path = "../runtime" }
|
||||
sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-keystore = { version = "0.27.0", path = "../../../primitives/keystore" }
|
||||
sp-state-machine = { version = "0.28.0", path = "../../../primitives/state-machine" }
|
||||
sp-tracing = { version = "10.0.0", path = "../../../primitives/tracing" }
|
||||
sp-trie = { version = "22.0.0", path = "../../../primitives/trie" }
|
||||
sp-statement-store = { version = "4.0.0-dev", path = "../../../primitives/statement-store" }
|
||||
frame-benchmarking = { path = "../../../frame/benchmarking" }
|
||||
node-primitives = { path = "../primitives" }
|
||||
kitchensink-runtime = { path = "../runtime" }
|
||||
sc-executor = { path = "../../../client/executor" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-keystore = { path = "../../../primitives/keystore" }
|
||||
sp-state-machine = { path = "../../../primitives/state-machine" }
|
||||
sp-tracing = { path = "../../../primitives/tracing" }
|
||||
sp-trie = { path = "../../../primitives/trie" }
|
||||
sp-statement-store = { path = "../../../primitives/statement-store" }
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.4.0"
|
||||
futures = "0.3.21"
|
||||
wat = "1.0"
|
||||
frame-support = { version = "4.0.0-dev", path = "../../../frame/support" }
|
||||
frame-system = { version = "4.0.0-dev", path = "../../../frame/system" }
|
||||
node-testing = { version = "3.0.0-dev", path = "../testing" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../../../frame/balances" }
|
||||
pallet-contracts = { version = "4.0.0-dev", path = "../../../frame/contracts" }
|
||||
pallet-im-online = { version = "4.0.0-dev", path = "../../../frame/im-online" }
|
||||
pallet-glutton = { version = "4.0.0-dev", path = "../../../frame/glutton" }
|
||||
pallet-sudo = { version = "4.0.0-dev", path = "../../../frame/sudo" }
|
||||
pallet-timestamp = { version = "4.0.0-dev", path = "../../../frame/timestamp" }
|
||||
pallet-treasury = { version = "4.0.0-dev", path = "../../../frame/treasury" }
|
||||
pallet-transaction-payment = { version = "4.0.0-dev", path = "../../../frame/transaction-payment" }
|
||||
sp-application-crypto = { version = "23.0.0", path = "../../../primitives/application-crypto" }
|
||||
pallet-root-testing = { version = "1.0.0-dev", path = "../../../frame/root-testing" }
|
||||
sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" }
|
||||
sp-externalities = { version = "0.19.0", path = "../../../primitives/externalities" }
|
||||
sp-keyring = { version = "24.0.0", path = "../../../primitives/keyring" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
frame-support = { path = "../../../frame/support" }
|
||||
frame-system = { path = "../../../frame/system" }
|
||||
node-testing = { path = "../testing" }
|
||||
pallet-balances = { path = "../../../frame/balances" }
|
||||
pallet-contracts = { path = "../../../frame/contracts" }
|
||||
pallet-im-online = { path = "../../../frame/im-online" }
|
||||
pallet-glutton = { path = "../../../frame/glutton" }
|
||||
pallet-sudo = { path = "../../../frame/sudo" }
|
||||
pallet-timestamp = { path = "../../../frame/timestamp" }
|
||||
pallet-treasury = { path = "../../../frame/treasury" }
|
||||
pallet-transaction-payment = { path = "../../../frame/transaction-payment" }
|
||||
sp-application-crypto = { path = "../../../primitives/application-crypto" }
|
||||
pallet-root-testing = { path = "../../../frame/root-testing" }
|
||||
sp-consensus-babe = { path = "../../../primitives/consensus/babe" }
|
||||
sp-externalities = { path = "../../../primitives/externalities" }
|
||||
sp-keyring = { path = "../../../primitives/keyring" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
|
||||
[features]
|
||||
stress-test = []
|
||||
|
||||
@@ -16,9 +16,9 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
clap = { version = "4.2.5", features = ["derive"] }
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
thiserror = "1.0"
|
||||
sc-cli = { version = "0.10.0-dev", path = "../../../client/cli" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" }
|
||||
sc-service = { version = "0.10.0-dev", default-features = false, path = "../../../client/service" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
sc-cli = { path = "../../../client/cli" }
|
||||
sc-client-api = { path = "../../../client/api" }
|
||||
sc-service = { path = "../../../client/service", default-features = false}
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
|
||||
@@ -13,8 +13,8 @@ publish = false
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-core = { path = "../../../primitives/core", default-features = false}
|
||||
sp-runtime = { path = "../../../primitives/runtime", default-features = false}
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -14,27 +14,27 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
jsonrpsee = { version = "0.16.2", features = ["server"] }
|
||||
node-primitives = { version = "2.0.0", path = "../primitives" }
|
||||
pallet-transaction-payment-rpc = { version = "4.0.0-dev", path = "../../../frame/transaction-payment/rpc/" }
|
||||
mmr-rpc = { version = "4.0.0-dev", path = "../../../client/merkle-mountain-range/rpc/" }
|
||||
sc-chain-spec = { version = "4.0.0-dev", path = "../../../client/chain-spec" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" }
|
||||
sc-consensus-babe = { version = "0.10.0-dev", path = "../../../client/consensus/babe" }
|
||||
sc-consensus-babe-rpc = { version = "0.10.0-dev", path = "../../../client/consensus/babe/rpc" }
|
||||
sc-consensus-grandpa = { version = "0.10.0-dev", path = "../../../client/consensus/grandpa" }
|
||||
sc-consensus-grandpa-rpc = { version = "0.10.0-dev", path = "../../../client/consensus/grandpa/rpc" }
|
||||
sc-rpc = { version = "4.0.0-dev", path = "../../../client/rpc" }
|
||||
sc-rpc-api = { version = "0.10.0-dev", path = "../../../client/rpc-api" }
|
||||
sc-rpc-spec-v2 = { version = "0.10.0-dev", path = "../../../client/rpc-spec-v2" }
|
||||
sc-sync-state-rpc = { version = "0.10.0-dev", path = "../../../client/sync-state-rpc" }
|
||||
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../../client/transaction-pool/api" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
||||
sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" }
|
||||
sp-keystore = { version = "0.27.0", path = "../../../primitives/keystore" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
sp-statement-store = { version = "4.0.0-dev", path = "../../../primitives/statement-store" }
|
||||
substrate-frame-rpc-system = { version = "4.0.0-dev", path = "../../../utils/frame/rpc/system" }
|
||||
substrate-state-trie-migration-rpc = { version = "4.0.0-dev", path = "../../../utils/frame/rpc/state-trie-migration-rpc/" }
|
||||
node-primitives = { path = "../primitives" }
|
||||
pallet-transaction-payment-rpc = { path = "../../../frame/transaction-payment/rpc" }
|
||||
mmr-rpc = { path = "../../../client/merkle-mountain-range/rpc" }
|
||||
sc-chain-spec = { path = "../../../client/chain-spec" }
|
||||
sc-client-api = { path = "../../../client/api" }
|
||||
sc-consensus-babe = { path = "../../../client/consensus/babe" }
|
||||
sc-consensus-babe-rpc = { path = "../../../client/consensus/babe/rpc" }
|
||||
sc-consensus-grandpa = { path = "../../../client/consensus/grandpa" }
|
||||
sc-consensus-grandpa-rpc = { path = "../../../client/consensus/grandpa/rpc" }
|
||||
sc-rpc = { path = "../../../client/rpc" }
|
||||
sc-rpc-api = { path = "../../../client/rpc-api" }
|
||||
sc-rpc-spec-v2 = { path = "../../../client/rpc-spec-v2" }
|
||||
sc-sync-state-rpc = { path = "../../../client/sync-state-rpc" }
|
||||
sc-transaction-pool-api = { path = "../../../client/transaction-pool/api" }
|
||||
sp-api = { path = "../../../primitives/api" }
|
||||
sp-block-builder = { path = "../../../primitives/block-builder" }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { path = "../../../primitives/consensus/common" }
|
||||
sp-consensus-babe = { path = "../../../primitives/consensus/babe" }
|
||||
sp-keystore = { path = "../../../primitives/keystore" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
sp-statement-store = { path = "../../../primitives/statement-store" }
|
||||
substrate-frame-rpc-system = { path = "../../../utils/frame/rpc/system" }
|
||||
substrate-state-trie-migration-rpc = { path = "../../../utils/frame/rpc/state-trie-migration-rpc" }
|
||||
|
||||
@@ -28,112 +28,112 @@ log = { version = "0.4.17", default-features = false }
|
||||
primitive-types = { version = "0.12.0", default-features = false, features = ["codec", "scale-info", "num-traits"] }
|
||||
|
||||
# primitives
|
||||
sp-authority-discovery = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/authority-discovery" }
|
||||
sp-consensus-babe = { version = "0.10.0-dev", default-features = false, path = "../../../primitives/consensus/babe" }
|
||||
sp-consensus-grandpa = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/consensus/grandpa" }
|
||||
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "4.0.0-dev" }
|
||||
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/inherents" }
|
||||
node-primitives = { version = "2.0.0", default-features = false, path = "../primitives" }
|
||||
sp-offchain = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/offchain" }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../../primitives/std" }
|
||||
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/api" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/staking" }
|
||||
sp-storage = { version = "13.0.0", default-features = false, path = "../../../primitives/storage" }
|
||||
sp-session = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/session" }
|
||||
sp-transaction-pool = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/transaction-pool" }
|
||||
sp-statement-store = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/statement-store" }
|
||||
sp-version = { version = "22.0.0", default-features = false, path = "../../../primitives/version" }
|
||||
sp-io = { version = "23.0.0", default-features = false, path = "../../../primitives/io" }
|
||||
sp-authority-discovery = { path = "../../../primitives/authority-discovery", default-features = false}
|
||||
sp-consensus-babe = { path = "../../../primitives/consensus/babe", default-features = false}
|
||||
sp-consensus-grandpa = { path = "../../../primitives/consensus/grandpa", default-features = false}
|
||||
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false}
|
||||
sp-inherents = { path = "../../../primitives/inherents", default-features = false}
|
||||
node-primitives = { path = "../primitives", default-features = false}
|
||||
sp-offchain = { path = "../../../primitives/offchain", default-features = false}
|
||||
sp-core = { path = "../../../primitives/core", default-features = false}
|
||||
sp-std = { path = "../../../primitives/std", default-features = false}
|
||||
sp-api = { path = "../../../primitives/api", default-features = false}
|
||||
sp-runtime = { path = "../../../primitives/runtime", default-features = false}
|
||||
sp-staking = { path = "../../../primitives/staking", default-features = false}
|
||||
sp-storage = { path = "../../../primitives/storage", default-features = false}
|
||||
sp-session = { path = "../../../primitives/session", default-features = false}
|
||||
sp-transaction-pool = { path = "../../../primitives/transaction-pool", default-features = false}
|
||||
sp-statement-store = { path = "../../../primitives/statement-store", default-features = false}
|
||||
sp-version = { path = "../../../primitives/version", default-features = false}
|
||||
sp-io = { path = "../../../primitives/io", default-features = false}
|
||||
|
||||
# frame dependencies
|
||||
frame-executive = { version = "4.0.0-dev", default-features = false, path = "../../../frame/executive" }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../../frame/benchmarking" }
|
||||
frame-benchmarking-pallet-pov = { version = "4.0.0-dev", default-features = false, path = "../../../frame/benchmarking/pov" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../../frame/support", features = ["tuples-96"] }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system" }
|
||||
frame-system-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system/benchmarking", optional = true }
|
||||
frame-election-provider-support = { version = "4.0.0-dev", default-features = false, path = "../../../frame/election-provider-support" }
|
||||
frame-system-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
|
||||
frame-try-runtime = { version = "0.10.0-dev", default-features = false, path = "../../../frame/try-runtime", optional = true }
|
||||
pallet-alliance = { version = "4.0.0-dev", default-features = false, path = "../../../frame/alliance" }
|
||||
pallet-asset-conversion = { version = "4.0.0-dev", default-features = false, path = "../../../frame/asset-conversion" }
|
||||
pallet-asset-rate = { version = "4.0.0-dev", default-features = false, path = "../../../frame/asset-rate" }
|
||||
pallet-assets = { version = "4.0.0-dev", default-features = false, path = "../../../frame/assets" }
|
||||
pallet-authority-discovery = { version = "4.0.0-dev", default-features = false, path = "../../../frame/authority-discovery" }
|
||||
pallet-authorship = { version = "4.0.0-dev", default-features = false, path = "../../../frame/authorship" }
|
||||
pallet-babe = { version = "4.0.0-dev", default-features = false, path = "../../../frame/babe" }
|
||||
pallet-bags-list = { version = "4.0.0-dev", default-features = false, path = "../../../frame/bags-list" }
|
||||
pallet-balances = { version = "4.0.0-dev", default-features = false, path = "../../../frame/balances" }
|
||||
pallet-bounties = { version = "4.0.0-dev", default-features = false, path = "../../../frame/bounties" }
|
||||
pallet-broker = { version = "0.1.0", default-features = false, path = "../../../frame/broker" }
|
||||
pallet-child-bounties = { version = "4.0.0-dev", default-features = false, path = "../../../frame/child-bounties" }
|
||||
pallet-collective = { version = "4.0.0-dev", default-features = false, path = "../../../frame/collective" }
|
||||
pallet-contracts = { version = "4.0.0-dev", default-features = false, path = "../../../frame/contracts" }
|
||||
pallet-contracts-primitives = { version = "24.0.0", default-features = false, path = "../../../frame/contracts/primitives/" }
|
||||
pallet-conviction-voting = { version = "4.0.0-dev", default-features = false, path = "../../../frame/conviction-voting" }
|
||||
pallet-core-fellowship = { version = "4.0.0-dev", default-features = false, path = "../../../frame/core-fellowship" }
|
||||
pallet-democracy = { version = "4.0.0-dev", default-features = false, path = "../../../frame/democracy" }
|
||||
pallet-election-provider-multi-phase = { version = "4.0.0-dev", default-features = false, path = "../../../frame/election-provider-multi-phase" }
|
||||
pallet-election-provider-support-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../../frame/election-provider-support/benchmarking", optional = true }
|
||||
pallet-elections-phragmen = { version = "5.0.0-dev", default-features = false, path = "../../../frame/elections-phragmen" }
|
||||
pallet-fast-unstake = { version = "4.0.0-dev", default-features = false, path = "../../../frame/fast-unstake" }
|
||||
pallet-nis = { version = "4.0.0-dev", default-features = false, path = "../../../frame/nis" }
|
||||
pallet-grandpa = { version = "4.0.0-dev", default-features = false, path = "../../../frame/grandpa" }
|
||||
pallet-im-online = { version = "4.0.0-dev", default-features = false, path = "../../../frame/im-online" }
|
||||
pallet-indices = { version = "4.0.0-dev", default-features = false, path = "../../../frame/indices" }
|
||||
pallet-identity = { version = "4.0.0-dev", default-features = false, path = "../../../frame/identity" }
|
||||
pallet-lottery = { version = "4.0.0-dev", default-features = false, path = "../../../frame/lottery" }
|
||||
pallet-membership = { version = "4.0.0-dev", default-features = false, path = "../../../frame/membership" }
|
||||
pallet-message-queue = { version = "7.0.0-dev", default-features = false, path = "../../../frame/message-queue" }
|
||||
pallet-mmr = { version = "4.0.0-dev", default-features = false, path = "../../../frame/merkle-mountain-range" }
|
||||
pallet-multisig = { version = "4.0.0-dev", default-features = false, path = "../../../frame/multisig" }
|
||||
pallet-nfts = { version = "4.0.0-dev", default-features = false, path = "../../../frame/nfts" }
|
||||
pallet-nfts-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../../frame/nfts/runtime-api" }
|
||||
pallet-nft-fractionalization = { version = "4.0.0-dev", default-features = false, path = "../../../frame/nft-fractionalization" }
|
||||
pallet-nomination-pools = { version = "1.0.0", default-features = false, path = "../../../frame/nomination-pools"}
|
||||
pallet-nomination-pools-benchmarking = { version = "1.0.0", default-features = false, optional = true, path = "../../../frame/nomination-pools/benchmarking" }
|
||||
pallet-nomination-pools-runtime-api = { version = "1.0.0-dev", default-features = false, path = "../../../frame/nomination-pools/runtime-api" }
|
||||
pallet-offences = { version = "4.0.0-dev", default-features = false, path = "../../../frame/offences" }
|
||||
pallet-offences-benchmarking = { version = "4.0.0-dev", path = "../../../frame/offences/benchmarking", default-features = false, optional = true }
|
||||
pallet-glutton = { version = "4.0.0-dev", default-features = false, path = "../../../frame/glutton" }
|
||||
pallet-preimage = { version = "4.0.0-dev", default-features = false, path = "../../../frame/preimage" }
|
||||
pallet-proxy = { version = "4.0.0-dev", default-features = false, path = "../../../frame/proxy" }
|
||||
pallet-insecure-randomness-collective-flip = { version = "4.0.0-dev", default-features = false, path = "../../../frame/insecure-randomness-collective-flip" }
|
||||
pallet-ranked-collective = { version = "4.0.0-dev", default-features = false, path = "../../../frame/ranked-collective" }
|
||||
pallet-recovery = { version = "4.0.0-dev", default-features = false, path = "../../../frame/recovery" }
|
||||
pallet-referenda = { version = "4.0.0-dev", default-features = false, path = "../../../frame/referenda" }
|
||||
pallet-remark = { version = "4.0.0-dev", default-features = false, path = "../../../frame/remark" }
|
||||
pallet-root-testing = { version = "1.0.0-dev", default-features = false, path = "../../../frame/root-testing" }
|
||||
pallet-salary = { version = "4.0.0-dev", default-features = false, path = "../../../frame/salary" }
|
||||
pallet-session = { version = "4.0.0-dev", features = [ "historical" ], path = "../../../frame/session", default-features = false }
|
||||
pallet-session-benchmarking = { version = "4.0.0-dev", path = "../../../frame/session/benchmarking", default-features = false, optional = true }
|
||||
pallet-staking = { version = "4.0.0-dev", default-features = false, path = "../../../frame/staking" }
|
||||
pallet-staking-reward-curve = { version = "4.0.0-dev", default-features = false, path = "../../../frame/staking/reward-curve" }
|
||||
pallet-staking-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../../frame/staking/runtime-api" }
|
||||
pallet-state-trie-migration = { version = "4.0.0-dev", default-features = false, path = "../../../frame/state-trie-migration" }
|
||||
pallet-statement = { version = "4.0.0-dev", default-features = false, path = "../../../frame/statement" }
|
||||
pallet-scheduler = { version = "4.0.0-dev", default-features = false, path = "../../../frame/scheduler" }
|
||||
pallet-society = { version = "4.0.0-dev", default-features = false, path = "../../../frame/society" }
|
||||
pallet-sudo = { version = "4.0.0-dev", default-features = false, path = "../../../frame/sudo" }
|
||||
pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../../frame/timestamp" }
|
||||
pallet-tips = { version = "4.0.0-dev", default-features = false, path = "../../../frame/tips" }
|
||||
pallet-treasury = { version = "4.0.0-dev", default-features = false, path = "../../../frame/treasury" }
|
||||
pallet-utility = { version = "4.0.0-dev", default-features = false, path = "../../../frame/utility" }
|
||||
pallet-transaction-payment = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-payment" }
|
||||
pallet-transaction-payment-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
|
||||
pallet-asset-conversion-tx-payment = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-payment/asset-conversion-tx-payment" }
|
||||
pallet-asset-tx-payment = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-payment/asset-tx-payment" }
|
||||
pallet-transaction-storage = { version = "4.0.0-dev", default-features = false, path = "../../../frame/transaction-storage" }
|
||||
pallet-uniques = { version = "4.0.0-dev", default-features = false, path = "../../../frame/uniques" }
|
||||
pallet-vesting = { version = "4.0.0-dev", default-features = false, path = "../../../frame/vesting" }
|
||||
pallet-whitelist = { version = "4.0.0-dev", default-features = false, path = "../../../frame/whitelist" }
|
||||
pallet-tx-pause = { version = "4.0.0-dev", default-features = false, path = "../../../frame/tx-pause" }
|
||||
pallet-safe-mode = { version = "4.0.0-dev", default-features = false, path = "../../../frame/safe-mode" }
|
||||
frame-executive = { path = "../../../frame/executive", default-features = false}
|
||||
frame-benchmarking = { path = "../../../frame/benchmarking", default-features = false}
|
||||
frame-benchmarking-pallet-pov = { path = "../../../frame/benchmarking/pov", default-features = false}
|
||||
frame-support = { path = "../../../frame/support", default-features = false, features = ["tuples-96"] }
|
||||
frame-system = { path = "../../../frame/system", default-features = false}
|
||||
frame-system-benchmarking = { path = "../../../frame/system/benchmarking", default-features = false, optional = true }
|
||||
frame-election-provider-support = { path = "../../../frame/election-provider-support", default-features = false}
|
||||
frame-system-rpc-runtime-api = { path = "../../../frame/system/rpc/runtime-api", default-features = false}
|
||||
frame-try-runtime = { path = "../../../frame/try-runtime", default-features = false, optional = true }
|
||||
pallet-alliance = { path = "../../../frame/alliance", default-features = false}
|
||||
pallet-asset-conversion = { path = "../../../frame/asset-conversion", default-features = false}
|
||||
pallet-asset-rate = { path = "../../../frame/asset-rate", default-features = false}
|
||||
pallet-assets = { path = "../../../frame/assets", default-features = false}
|
||||
pallet-authority-discovery = { path = "../../../frame/authority-discovery", default-features = false}
|
||||
pallet-authorship = { path = "../../../frame/authorship", default-features = false}
|
||||
pallet-babe = { path = "../../../frame/babe", default-features = false}
|
||||
pallet-bags-list = { path = "../../../frame/bags-list", default-features = false}
|
||||
pallet-balances = { path = "../../../frame/balances", default-features = false}
|
||||
pallet-bounties = { path = "../../../frame/bounties", default-features = false}
|
||||
pallet-broker = { path = "../../../frame/broker", default-features = false}
|
||||
pallet-child-bounties = { path = "../../../frame/child-bounties", default-features = false}
|
||||
pallet-collective = { path = "../../../frame/collective", default-features = false}
|
||||
pallet-contracts = { path = "../../../frame/contracts", default-features = false}
|
||||
pallet-contracts-primitives = { path = "../../../frame/contracts/primitives", default-features = false}
|
||||
pallet-conviction-voting = { path = "../../../frame/conviction-voting", default-features = false}
|
||||
pallet-core-fellowship = { path = "../../../frame/core-fellowship", default-features = false}
|
||||
pallet-democracy = { path = "../../../frame/democracy", default-features = false}
|
||||
pallet-election-provider-multi-phase = { path = "../../../frame/election-provider-multi-phase", default-features = false}
|
||||
pallet-election-provider-support-benchmarking = { path = "../../../frame/election-provider-support/benchmarking", default-features = false, optional = true }
|
||||
pallet-elections-phragmen = { path = "../../../frame/elections-phragmen", default-features = false}
|
||||
pallet-fast-unstake = { path = "../../../frame/fast-unstake", default-features = false}
|
||||
pallet-nis = { path = "../../../frame/nis", default-features = false}
|
||||
pallet-grandpa = { path = "../../../frame/grandpa", default-features = false}
|
||||
pallet-im-online = { path = "../../../frame/im-online", default-features = false}
|
||||
pallet-indices = { path = "../../../frame/indices", default-features = false}
|
||||
pallet-identity = { path = "../../../frame/identity", default-features = false}
|
||||
pallet-lottery = { path = "../../../frame/lottery", default-features = false}
|
||||
pallet-membership = { path = "../../../frame/membership", default-features = false}
|
||||
pallet-message-queue = { path = "../../../frame/message-queue", default-features = false}
|
||||
pallet-mmr = { path = "../../../frame/merkle-mountain-range", default-features = false}
|
||||
pallet-multisig = { path = "../../../frame/multisig", default-features = false}
|
||||
pallet-nfts = { path = "../../../frame/nfts", default-features = false}
|
||||
pallet-nfts-runtime-api = { path = "../../../frame/nfts/runtime-api", default-features = false}
|
||||
pallet-nft-fractionalization = { path = "../../../frame/nft-fractionalization", default-features = false}
|
||||
pallet-nomination-pools = { path = "../../../frame/nomination-pools", default-features = false}
|
||||
pallet-nomination-pools-benchmarking = { path = "../../../frame/nomination-pools/benchmarking", default-features = false, optional = true}
|
||||
pallet-nomination-pools-runtime-api = { path = "../../../frame/nomination-pools/runtime-api", default-features = false}
|
||||
pallet-offences = { path = "../../../frame/offences", default-features = false}
|
||||
pallet-offences-benchmarking = { path = "../../../frame/offences/benchmarking", default-features = false, optional = true }
|
||||
pallet-glutton = { path = "../../../frame/glutton", default-features = false}
|
||||
pallet-preimage = { path = "../../../frame/preimage", default-features = false}
|
||||
pallet-proxy = { path = "../../../frame/proxy", default-features = false}
|
||||
pallet-insecure-randomness-collective-flip = { path = "../../../frame/insecure-randomness-collective-flip", default-features = false}
|
||||
pallet-ranked-collective = { path = "../../../frame/ranked-collective", default-features = false}
|
||||
pallet-recovery = { path = "../../../frame/recovery", default-features = false}
|
||||
pallet-referenda = { path = "../../../frame/referenda", default-features = false}
|
||||
pallet-remark = { path = "../../../frame/remark", default-features = false}
|
||||
pallet-root-testing = { path = "../../../frame/root-testing", default-features = false}
|
||||
pallet-salary = { path = "../../../frame/salary", default-features = false}
|
||||
pallet-session = { path = "../../../frame/session", default-features = false , features = [ "historical" ]}
|
||||
pallet-session-benchmarking = { path = "../../../frame/session/benchmarking", default-features = false, optional = true }
|
||||
pallet-staking = { path = "../../../frame/staking", default-features = false}
|
||||
pallet-staking-reward-curve = { path = "../../../frame/staking/reward-curve", default-features = false}
|
||||
pallet-staking-runtime-api = { path = "../../../frame/staking/runtime-api", default-features = false}
|
||||
pallet-state-trie-migration = { path = "../../../frame/state-trie-migration", default-features = false}
|
||||
pallet-statement = { path = "../../../frame/statement", default-features = false}
|
||||
pallet-scheduler = { path = "../../../frame/scheduler", default-features = false}
|
||||
pallet-society = { path = "../../../frame/society", default-features = false}
|
||||
pallet-sudo = { path = "../../../frame/sudo", default-features = false}
|
||||
pallet-timestamp = { path = "../../../frame/timestamp", default-features = false}
|
||||
pallet-tips = { path = "../../../frame/tips", default-features = false}
|
||||
pallet-treasury = { path = "../../../frame/treasury", default-features = false}
|
||||
pallet-utility = { path = "../../../frame/utility", default-features = false}
|
||||
pallet-transaction-payment = { path = "../../../frame/transaction-payment", default-features = false}
|
||||
pallet-transaction-payment-rpc-runtime-api = { path = "../../../frame/transaction-payment/rpc/runtime-api", default-features = false}
|
||||
pallet-asset-conversion-tx-payment = { path = "../../../frame/transaction-payment/asset-conversion-tx-payment", default-features = false}
|
||||
pallet-asset-tx-payment = { path = "../../../frame/transaction-payment/asset-tx-payment", default-features = false}
|
||||
pallet-transaction-storage = { path = "../../../frame/transaction-storage", default-features = false}
|
||||
pallet-uniques = { path = "../../../frame/uniques", default-features = false}
|
||||
pallet-vesting = { path = "../../../frame/vesting", default-features = false}
|
||||
pallet-whitelist = { path = "../../../frame/whitelist", default-features = false}
|
||||
pallet-tx-pause = { path = "../../../frame/tx-pause", default-features = false}
|
||||
pallet-safe-mode = { path = "../../../frame/safe-mode", default-features = false}
|
||||
|
||||
[build-dependencies]
|
||||
substrate-wasm-builder = { version = "5.0.0-dev", path = "../../../utils/wasm-builder", optional = true }
|
||||
substrate-wasm-builder = { path = "../../../utils/wasm-builder", optional = true }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -18,31 +18,31 @@ fs_extra = "1"
|
||||
futures = "0.3.21"
|
||||
log = "0.4.17"
|
||||
tempfile = "3.1.0"
|
||||
frame-system = { version = "4.0.0-dev", path = "../../../frame/system" }
|
||||
node-executor = { version = "3.0.0-dev", path = "../executor" }
|
||||
node-primitives = { version = "2.0.0", path = "../primitives" }
|
||||
kitchensink-runtime = { version = "3.0.0-dev", path = "../runtime" }
|
||||
pallet-asset-conversion = { version = "4.0.0-dev", path = "../../../frame/asset-conversion" }
|
||||
pallet-assets = { version = "4.0.0-dev", path = "../../../frame/assets" }
|
||||
pallet-asset-conversion-tx-payment = { version = "4.0.0-dev", path = "../../../frame/transaction-payment/asset-conversion-tx-payment" }
|
||||
pallet-asset-tx-payment = { version = "4.0.0-dev", path = "../../../frame/transaction-payment/asset-tx-payment" }
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../../../client/block-builder" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" }
|
||||
sc-client-db = { version = "0.10.0-dev", features = ["rocksdb"], path = "../../../client/db" }
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" }
|
||||
sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" }
|
||||
sc-service = { version = "0.10.0-dev", features = [
|
||||
frame-system = { path = "../../../frame/system" }
|
||||
node-executor = { path = "../executor" }
|
||||
node-primitives = { path = "../primitives" }
|
||||
kitchensink-runtime = { path = "../runtime" }
|
||||
pallet-asset-conversion = { path = "../../../frame/asset-conversion" }
|
||||
pallet-assets = { path = "../../../frame/assets" }
|
||||
pallet-asset-conversion-tx-payment = { path = "../../../frame/transaction-payment/asset-conversion-tx-payment" }
|
||||
pallet-asset-tx-payment = { path = "../../../frame/transaction-payment/asset-tx-payment" }
|
||||
sc-block-builder = { path = "../../../client/block-builder" }
|
||||
sc-client-api = { path = "../../../client/api" }
|
||||
sc-client-db = { path = "../../../client/db", features = ["rocksdb"]}
|
||||
sc-consensus = { path = "../../../client/consensus/common" }
|
||||
sc-executor = { path = "../../../client/executor" }
|
||||
sc-service = { path = "../../../client/service", features = [
|
||||
"test-helpers",
|
||||
"rocksdb",
|
||||
], path = "../../../client/service" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
|
||||
sp-io = { version = "23.0.0", path = "../../../primitives/io" }
|
||||
sp-keyring = { version = "24.0.0", path = "../../../primitives/keyring" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
sp-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/timestamp" }
|
||||
substrate-test-client = { version = "2.0.0", path = "../../../test-utils/client" }
|
||||
]}
|
||||
sp-api = { path = "../../../primitives/api" }
|
||||
sp-block-builder = { path = "../../../primitives/block-builder" }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { path = "../../../primitives/consensus/common" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-inherents = { path = "../../../primitives/inherents" }
|
||||
sp-io = { path = "../../../primitives/io" }
|
||||
sp-keyring = { path = "../../../primitives/keyring" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
sp-timestamp = { path = "../../../primitives/timestamp", default-features = false}
|
||||
substrate-test-client = { path = "../../../test-utils/client" }
|
||||
|
||||
@@ -24,8 +24,8 @@ crate-type = ["rlib"]
|
||||
ansi_term = "0.12.1"
|
||||
clap = { version = "4.2.5", features = ["derive"] }
|
||||
rand = "0.8"
|
||||
node-cli = { version = "3.0.0-dev", path = "../../node/cli" }
|
||||
sc-chain-spec = { version = "4.0.0-dev", path = "../../../client/chain-spec" }
|
||||
sc-keystore = { version = "4.0.0-dev", path = "../../../client/keystore" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-keystore = { version = "0.27.0", path = "../../../primitives/keystore" }
|
||||
node-cli = { path = "../../node/cli" }
|
||||
sc-chain-spec = { path = "../../../client/chain-spec" }
|
||||
sc-keystore = { path = "../../../client/keystore" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-keystore = { path = "../../../primitives/keystore" }
|
||||
|
||||
@@ -18,4 +18,4 @@ name = "subkey"
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "4.2.5", features = ["derive"] }
|
||||
sc-cli = { version = "0.10.0-dev", path = "../../../client/cli" }
|
||||
sc-cli = { path = "../../../client/cli" }
|
||||
|
||||
@@ -16,5 +16,5 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
log = "0.4.17"
|
||||
thiserror = "1.0.30"
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-wasm-interface = { version = "14.0.0", path = "../../primitives/wasm-interface" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-wasm-interface = { path = "../../primitives/wasm-interface" }
|
||||
|
||||
@@ -21,22 +21,22 @@ fnv = "1.0.6"
|
||||
futures = "0.3.21"
|
||||
log = "0.4.17"
|
||||
parking_lot = "0.12.1"
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../utils/prometheus" }
|
||||
sc-executor = { version = "0.10.0-dev", path = "../executor" }
|
||||
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../transaction-pool/api" }
|
||||
sc-utils = { version = "4.0.0-dev", path = "../utils" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-database = { version = "4.0.0-dev", path = "../../primitives/database" }
|
||||
sp-externalities = { version = "0.19.0", path = "../../primitives/externalities" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-state-machine = { version = "0.28.0", path = "../../primitives/state-machine" }
|
||||
sp-statement-store = { version = "4.0.0-dev", path = "../../primitives/statement-store" }
|
||||
sp-storage = { version = "13.0.0", path = "../../primitives/storage" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus" }
|
||||
sc-executor = { path = "../executor" }
|
||||
sc-transaction-pool-api = { path = "../transaction-pool/api" }
|
||||
sc-utils = { path = "../utils" }
|
||||
sp-api = { path = "../../primitives/api" }
|
||||
sp-blockchain = { path = "../../primitives/blockchain" }
|
||||
sp-consensus = { path = "../../primitives/consensus/common" }
|
||||
sp-core = { path = "../../primitives/core", default-features = false}
|
||||
sp-database = { path = "../../primitives/database" }
|
||||
sp-externalities = { path = "../../primitives/externalities" }
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-state-machine = { path = "../../primitives/state-machine" }
|
||||
sp-statement-store = { path = "../../primitives/statement-store" }
|
||||
sp-storage = { path = "../../primitives/storage" }
|
||||
|
||||
[dev-dependencies]
|
||||
thiserror = "1.0.30"
|
||||
sp-test-primitives = { version = "2.0.0", path = "../../primitives/test-primitives" }
|
||||
substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime" }
|
||||
sp-test-primitives = { path = "../../primitives/test-primitives" }
|
||||
substrate-test-runtime = { path = "../../test-utils/runtime" }
|
||||
|
||||
@@ -27,18 +27,18 @@ log = "0.4.17"
|
||||
prost = "0.11"
|
||||
rand = "0.8.5"
|
||||
thiserror = "1.0"
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../utils/prometheus" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../network/" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
||||
sp-authority-discovery = { version = "4.0.0-dev", path = "../../primitives/authority-discovery" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-keystore = { version = "0.27.0", path = "../../primitives/keystore" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus" }
|
||||
sc-client-api = { path = "../api" }
|
||||
sc-network = { path = "../network" }
|
||||
sp-api = { path = "../../primitives/api" }
|
||||
sp-authority-discovery = { path = "../../primitives/authority-discovery" }
|
||||
sp-blockchain = { path = "../../primitives/blockchain" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-keystore = { path = "../../primitives/keystore" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
async-trait = "0.1.56"
|
||||
|
||||
[dev-dependencies]
|
||||
quickcheck = { version = "1.0.3", default-features = false }
|
||||
sp-tracing = { version = "10.0.0", path = "../../primitives/tracing" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||
sp-tracing = { path = "../../primitives/tracing" }
|
||||
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
||||
|
||||
@@ -17,20 +17,20 @@ codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
futures = "0.3.21"
|
||||
futures-timer = "3.0.1"
|
||||
log = "0.4.17"
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../utils/prometheus" }
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sc-proposer-metrics = { version = "0.10.0-dev", path = "../proposer-metrics" }
|
||||
sc-telemetry = { version = "4.0.0-dev", path = "../telemetry" }
|
||||
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../client/transaction-pool/api" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-inherents = { version = "4.0.0-dev", path = "../../primitives/inherents" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus" }
|
||||
sc-block-builder = { path = "../block-builder" }
|
||||
sc-client-api = { path = "../api" }
|
||||
sc-proposer-metrics = { path = "../proposer-metrics" }
|
||||
sc-telemetry = { path = "../telemetry" }
|
||||
sc-transaction-pool-api = { path = "../transaction-pool/api" }
|
||||
sp-api = { path = "../../primitives/api" }
|
||||
sp-blockchain = { path = "../../primitives/blockchain" }
|
||||
sp-consensus = { path = "../../primitives/consensus/common" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-inherents = { path = "../../primitives/inherents" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
parking_lot = "0.12.1"
|
||||
sc-transaction-pool = { version = "4.0.0-dev", path = "../transaction-pool" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||
sc-transaction-pool = { path = "../transaction-pool" }
|
||||
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
||||
|
||||
@@ -16,14 +16,14 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", features = [
|
||||
"derive",
|
||||
] }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
||||
sp-block-builder = { version = "4.0.0-dev", path = "../../primitives/block-builder" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-inherents = { version = "4.0.0-dev", path = "../../primitives/inherents" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
sc-client-api = { path = "../api" }
|
||||
sp-api = { path = "../../primitives/api" }
|
||||
sp-block-builder = { path = "../../primitives/block-builder" }
|
||||
sp-blockchain = { path = "../../primitives/blockchain" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-inherents = { path = "../../primitives/inherents" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-state-machine = { version = "0.28.0", path = "../../primitives/state-machine" }
|
||||
sp-state-machine = { path = "../../primitives/state-machine" }
|
||||
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
||||
|
||||
@@ -16,12 +16,12 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
memmap2 = "0.5.0"
|
||||
serde = { version = "1.0.163", features = ["derive"] }
|
||||
serde_json = "1.0.85"
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sc-chain-spec-derive = { version = "4.0.0-dev", path = "./derive" }
|
||||
sc-executor = { version = "0.10.0-dev", path = "../executor" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../network" }
|
||||
sc-telemetry = { version = "4.0.0-dev", path = "../telemetry" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
sp-state-machine = { version = "0.28.0", path = "../../primitives/state-machine" }
|
||||
sc-client-api = { path = "../api" }
|
||||
sc-chain-spec-derive = { path = "derive" }
|
||||
sc-executor = { path = "../executor" }
|
||||
sc-network = { path = "../network" }
|
||||
sc-telemetry = { path = "../telemetry" }
|
||||
sp-blockchain = { path = "../../primitives/blockchain" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
sp-state-machine = { path = "../../primitives/state-machine" }
|
||||
|
||||
@@ -30,26 +30,26 @@ serde_json = "1.0.85"
|
||||
thiserror = "1.0.30"
|
||||
tiny-bip39 = "1.0.0"
|
||||
tokio = { version = "1.22.0", features = ["signal", "rt-multi-thread", "parking_lot"] }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sc-client-db = { version = "0.10.0-dev", default-features = false, path = "../db" }
|
||||
sc-keystore = { version = "4.0.0-dev", path = "../keystore" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../network" }
|
||||
sc-service = { version = "0.10.0-dev", default-features = false, path = "../service" }
|
||||
sc-telemetry = { version = "4.0.0-dev", path = "../telemetry" }
|
||||
sc-tracing = { version = "4.0.0-dev", path = "../tracing" }
|
||||
sc-utils = { version = "4.0.0-dev", path = "../utils" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-keyring = { version = "24.0.0", path = "../../primitives/keyring" }
|
||||
sp-keystore = { version = "0.27.0", path = "../../primitives/keystore" }
|
||||
sp-panic-handler = { version = "8.0.0", path = "../../primitives/panic-handler" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
sp-version = { version = "22.0.0", path = "../../primitives/version" }
|
||||
sc-client-api = { path = "../api" }
|
||||
sc-client-db = { path = "../db", default-features = false}
|
||||
sc-keystore = { path = "../keystore" }
|
||||
sc-network = { path = "../network" }
|
||||
sc-service = { path = "../service", default-features = false}
|
||||
sc-telemetry = { path = "../telemetry" }
|
||||
sc-tracing = { path = "../tracing" }
|
||||
sc-utils = { path = "../utils" }
|
||||
sp-blockchain = { path = "../../primitives/blockchain" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-keyring = { path = "../../primitives/keyring" }
|
||||
sp-keystore = { path = "../../primitives/keystore" }
|
||||
sp-panic-handler = { path = "../../primitives/panic-handler" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
sp-version = { path = "../../primitives/version" }
|
||||
|
||||
[dev-dependencies]
|
||||
tempfile = "3.1.0"
|
||||
futures-timer = "3.0.1"
|
||||
sp-tracing = { version = "10.0.0", path = "../../primitives/tracing" }
|
||||
sp-tracing = { path = "../../primitives/tracing" }
|
||||
|
||||
[features]
|
||||
default = [ "rocksdb" ]
|
||||
|
||||
@@ -18,32 +18,32 @@ codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
futures = "0.3.21"
|
||||
log = "0.4.17"
|
||||
thiserror = "1.0"
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../../utils/prometheus" }
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" }
|
||||
sc-consensus-slots = { version = "0.10.0-dev", path = "../slots" }
|
||||
sc-telemetry = { version = "4.0.0-dev", path = "../../telemetry" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
sp-application-crypto = { version = "23.0.0", path = "../../../primitives/application-crypto" }
|
||||
sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
||||
sp-consensus-aura = { version = "0.10.0-dev", path = "../../../primitives/consensus/aura" }
|
||||
sp-consensus-slots = { version = "0.10.0-dev", path = "../../../primitives/consensus/slots" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
|
||||
sp-keystore = { version = "0.27.0", path = "../../../primitives/keystore" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus" }
|
||||
sc-block-builder = { path = "../../block-builder" }
|
||||
sc-client-api = { path = "../../api" }
|
||||
sc-consensus = { path = "../common" }
|
||||
sc-consensus-slots = { path = "../slots" }
|
||||
sc-telemetry = { path = "../../telemetry" }
|
||||
sp-api = { path = "../../../primitives/api" }
|
||||
sp-application-crypto = { path = "../../../primitives/application-crypto" }
|
||||
sp-block-builder = { path = "../../../primitives/block-builder" }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { path = "../../../primitives/consensus/common" }
|
||||
sp-consensus-aura = { path = "../../../primitives/consensus/aura" }
|
||||
sp-consensus-slots = { path = "../../../primitives/consensus/slots" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-inherents = { path = "../../../primitives/inherents" }
|
||||
sp-keystore = { path = "../../../primitives/keystore" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
parking_lot = "0.12.1"
|
||||
tempfile = "3.1.0"
|
||||
sc-keystore = { version = "4.0.0-dev", path = "../../keystore" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../../network" }
|
||||
sc-network-test = { version = "0.8.0", path = "../../network/test" }
|
||||
sp-keyring = { version = "24.0.0", path = "../../../primitives/keyring" }
|
||||
sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" }
|
||||
sp-tracing = { version = "10.0.0", path = "../../../primitives/tracing" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
||||
sc-keystore = { path = "../../keystore" }
|
||||
sc-network = { path = "../../network" }
|
||||
sc-network-test = { path = "../../network/test" }
|
||||
sp-keyring = { path = "../../../primitives/keyring" }
|
||||
sp-timestamp = { path = "../../../primitives/timestamp" }
|
||||
sp-tracing = { path = "../../../primitives/tracing" }
|
||||
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" }
|
||||
tokio = { version = "1.22.0" }
|
||||
|
||||
@@ -24,33 +24,33 @@ num-rational = "0.4.1"
|
||||
num-traits = "0.2.8"
|
||||
parking_lot = "0.12.1"
|
||||
thiserror = "1.0"
|
||||
fork-tree = { version = "3.0.0", path = "../../../utils/fork-tree" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../../utils/prometheus" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" }
|
||||
sc-consensus-epochs = { version = "0.10.0-dev", path = "../epochs" }
|
||||
sc-consensus-slots = { version = "0.10.0-dev", path = "../slots" }
|
||||
sc-telemetry = { version = "4.0.0-dev", path = "../../telemetry" }
|
||||
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../transaction-pool/api" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
sp-application-crypto = { version = "23.0.0", path = "../../../primitives/application-crypto" }
|
||||
sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
||||
sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" }
|
||||
sp-consensus-slots = { version = "0.10.0-dev", path = "../../../primitives/consensus/slots" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
|
||||
sp-keystore = { version = "0.27.0", path = "../../../primitives/keystore" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
fork-tree = { path = "../../../utils/fork-tree" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus" }
|
||||
sc-client-api = { path = "../../api" }
|
||||
sc-consensus = { path = "../common" }
|
||||
sc-consensus-epochs = { path = "../epochs" }
|
||||
sc-consensus-slots = { path = "../slots" }
|
||||
sc-telemetry = { path = "../../telemetry" }
|
||||
sc-transaction-pool-api = { path = "../../transaction-pool/api" }
|
||||
sp-api = { path = "../../../primitives/api" }
|
||||
sp-application-crypto = { path = "../../../primitives/application-crypto" }
|
||||
sp-block-builder = { path = "../../../primitives/block-builder" }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { path = "../../../primitives/consensus/common" }
|
||||
sp-consensus-babe = { path = "../../../primitives/consensus/babe" }
|
||||
sp-consensus-slots = { path = "../../../primitives/consensus/slots" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-inherents = { path = "../../../primitives/inherents" }
|
||||
sp-keystore = { path = "../../../primitives/keystore" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
rand_chacha = "0.2.2"
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" }
|
||||
sp-keyring = { version = "24.0.0", path = "../../../primitives/keyring" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../../network" }
|
||||
sc-network-test = { version = "0.8.0", path = "../../network/test" }
|
||||
sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" }
|
||||
sp-tracing = { version = "10.0.0", path = "../../../primitives/tracing" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
||||
sc-block-builder = { path = "../../block-builder" }
|
||||
sp-keyring = { path = "../../../primitives/keyring" }
|
||||
sc-network = { path = "../../network" }
|
||||
sc-network-test = { path = "../../network/test" }
|
||||
sp-timestamp = { path = "../../../primitives/timestamp" }
|
||||
sp-tracing = { path = "../../../primitives/tracing" }
|
||||
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" }
|
||||
tokio = "1.22.0"
|
||||
|
||||
@@ -17,23 +17,23 @@ jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"]
|
||||
futures = "0.3.21"
|
||||
serde = { version = "1.0.163", features = ["derive"] }
|
||||
thiserror = "1.0"
|
||||
sc-consensus-babe = { version = "0.10.0-dev", path = "../" }
|
||||
sc-consensus-epochs = { version = "0.10.0-dev", path = "../../epochs" }
|
||||
sc-rpc-api = { version = "0.10.0-dev", path = "../../../rpc-api" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../../primitives/api" }
|
||||
sp-application-crypto = { version = "23.0.0", path = "../../../../primitives/application-crypto" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../../primitives/blockchain" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../../primitives/consensus/common" }
|
||||
sp-consensus-babe = { version = "0.10.0-dev", path = "../../../../primitives/consensus/babe" }
|
||||
sp-core = { version = "21.0.0", path = "../../../../primitives/core" }
|
||||
sp-keystore = { version = "0.27.0", path = "../../../../primitives/keystore" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../../primitives/runtime" }
|
||||
sc-consensus-babe = { path = ".." }
|
||||
sc-consensus-epochs = { path = "../../epochs" }
|
||||
sc-rpc-api = { path = "../../../rpc-api" }
|
||||
sp-api = { path = "../../../../primitives/api" }
|
||||
sp-application-crypto = { path = "../../../../primitives/application-crypto" }
|
||||
sp-blockchain = { path = "../../../../primitives/blockchain" }
|
||||
sp-consensus = { path = "../../../../primitives/consensus/common" }
|
||||
sp-consensus-babe = { path = "../../../../primitives/consensus/babe" }
|
||||
sp-core = { path = "../../../../primitives/core" }
|
||||
sp-keystore = { path = "../../../../primitives/keystore" }
|
||||
sp-runtime = { path = "../../../../primitives/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
serde_json = "1.0.85"
|
||||
tokio = "1.22.0"
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../../../consensus/common" }
|
||||
sc-keystore = { version = "4.0.0-dev", path = "../../../keystore" }
|
||||
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../../transaction-pool/api" }
|
||||
sp-keyring = { version = "24.0.0", path = "../../../../primitives/keyring" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../../test-utils/runtime/client" }
|
||||
sc-consensus = { path = "../../common" }
|
||||
sc-keystore = { path = "../../../keystore" }
|
||||
sc-transaction-pool-api = { path = "../../../transaction-pool/api" }
|
||||
sp-keyring = { path = "../../../../primitives/keyring" }
|
||||
substrate-test-runtime-client = { path = "../../../../test-utils/runtime/client" }
|
||||
|
||||
@@ -19,31 +19,31 @@ log = "0.4"
|
||||
parking_lot = "0.12.1"
|
||||
thiserror = "1.0"
|
||||
wasm-timer = "0.2.5"
|
||||
prometheus = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../../utils/prometheus" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../../consensus/common" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../../network" }
|
||||
sc-network-gossip = { version = "0.10.0-dev", path = "../../network-gossip" }
|
||||
sc-network-sync = { version = "0.10.0-dev", path = "../../network/sync" }
|
||||
sc-utils = { version = "4.0.0-dev", path = "../../utils" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
sp-application-crypto = { version = "23.0.0", path = "../../../primitives/application-crypto" }
|
||||
sp-arithmetic = { version = "16.0.0", path = "../../../primitives/arithmetic" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
||||
sp-consensus-beefy = { version = "4.0.0-dev", path = "../../../primitives/consensus/beefy" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-keystore = { version = "0.27.0", path = "../../../primitives/keystore" }
|
||||
sp-mmr-primitives = { version = "4.0.0-dev", path = "../../../primitives/merkle-mountain-range" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
prometheus = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus" }
|
||||
sc-client-api = { path = "../../api" }
|
||||
sc-consensus = { path = "../common" }
|
||||
sc-network = { path = "../../network" }
|
||||
sc-network-gossip = { path = "../../network-gossip" }
|
||||
sc-network-sync = { path = "../../network/sync" }
|
||||
sc-utils = { path = "../../utils" }
|
||||
sp-api = { path = "../../../primitives/api" }
|
||||
sp-application-crypto = { path = "../../../primitives/application-crypto" }
|
||||
sp-arithmetic = { path = "../../../primitives/arithmetic" }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { path = "../../../primitives/consensus/common" }
|
||||
sp-consensus-beefy = { path = "../../../primitives/consensus/beefy" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-keystore = { path = "../../../primitives/keystore" }
|
||||
sp-mmr-primitives = { path = "../../../primitives/merkle-mountain-range" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
serde = "1.0.163"
|
||||
tempfile = "3.1.0"
|
||||
tokio = "1.22.0"
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" }
|
||||
sc-network-test = { version = "0.8.0", path = "../../network/test" }
|
||||
sp-consensus-grandpa = { version = "4.0.0-dev", path = "../../../primitives/consensus/grandpa" }
|
||||
sp-keyring = { version = "24.0.0", path = "../../../primitives/keyring" }
|
||||
sp-tracing = { version = "10.0.0", path = "../../../primitives/tracing" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
||||
sc-block-builder = { path = "../../block-builder" }
|
||||
sc-network-test = { path = "../../network/test" }
|
||||
sp-consensus-grandpa = { path = "../../../primitives/consensus/grandpa" }
|
||||
sp-keyring = { path = "../../../primitives/keyring" }
|
||||
sp-tracing = { path = "../../../primitives/tracing" }
|
||||
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" }
|
||||
|
||||
@@ -16,14 +16,14 @@ log = "0.4"
|
||||
parking_lot = "0.12.1"
|
||||
serde = { version = "1.0.163", features = ["derive"] }
|
||||
thiserror = "1.0"
|
||||
sc-consensus-beefy = { version = "4.0.0-dev", path = "../" }
|
||||
sp-consensus-beefy = { version = "4.0.0-dev", path = "../../../../primitives/consensus/beefy" }
|
||||
sc-rpc = { version = "4.0.0-dev", path = "../../../rpc" }
|
||||
sp-core = { version = "21.0.0", path = "../../../../primitives/core" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../../primitives/runtime" }
|
||||
sc-consensus-beefy = { path = ".." }
|
||||
sp-consensus-beefy = { path = "../../../../primitives/consensus/beefy" }
|
||||
sc-rpc = { path = "../../../rpc" }
|
||||
sp-core = { path = "../../../../primitives/core" }
|
||||
sp-runtime = { path = "../../../../primitives/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
serde_json = "1.0.85"
|
||||
sc-rpc = { version = "4.0.0-dev", features = ["test-helpers"], path = "../../../rpc" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../../test-utils/runtime/client" }
|
||||
sc-rpc = { path = "../../../rpc", features = ["test-helpers"]}
|
||||
substrate-test-runtime-client = { path = "../../../../test-utils/runtime/client" }
|
||||
tokio = { version = "1.22.0", features = ["macros"] }
|
||||
|
||||
@@ -22,15 +22,15 @@ mockall = "0.11.3"
|
||||
parking_lot = "0.12.1"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
thiserror = "1.0.30"
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../../utils/prometheus" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
||||
sc-utils = { version = "4.0.0-dev", path = "../../utils" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
sp-state-machine = { version = "0.28.0", path = "../../../primitives/state-machine" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus" }
|
||||
sc-client-api = { path = "../../api" }
|
||||
sc-utils = { path = "../../utils" }
|
||||
sp-api = { path = "../../../primitives/api" }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { path = "../../../primitives/consensus/common" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
sp-state-machine = { path = "../../../primitives/state-machine" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-test-primitives = { version = "2.0.0", path = "../../../primitives/test-primitives" }
|
||||
sp-test-primitives = { path = "../../../primitives/test-primitives" }
|
||||
|
||||
@@ -14,8 +14,8 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", features = ["derive"] }
|
||||
fork-tree = { version = "3.0.0", path = "../../../utils/fork-tree" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../common" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
fork-tree = { path = "../../../utils/fork-tree" }
|
||||
sc-client-api = { path = "../../api" }
|
||||
sc-consensus = { path = "../common" }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
|
||||
@@ -27,35 +27,35 @@ parking_lot = "0.12.1"
|
||||
rand = "0.8.5"
|
||||
serde_json = "1.0.85"
|
||||
thiserror = "1.0"
|
||||
fork-tree = { version = "3.0.0", path = "../../../utils/fork-tree" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../../utils/prometheus" }
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" }
|
||||
sc-chain-spec = { version = "4.0.0-dev", path = "../../../client/chain-spec" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
||||
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../transaction-pool/api" }
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../common" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../../network" }
|
||||
sc-network-gossip = { version = "0.10.0-dev", path = "../../network-gossip" }
|
||||
sc-network-common = { version = "0.10.0-dev", path = "../../network/common" }
|
||||
sc-telemetry = { version = "4.0.0-dev", path = "../../telemetry" }
|
||||
sc-utils = { version = "4.0.0-dev", path = "../../utils" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
sp-application-crypto = { version = "23.0.0", path = "../../../primitives/application-crypto" }
|
||||
sp-arithmetic = { version = "16.0.0", path = "../../../primitives/arithmetic" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-consensus-grandpa = { version = "4.0.0-dev", path = "../../../primitives/consensus/grandpa" }
|
||||
sp-keystore = { version = "0.27.0", path = "../../../primitives/keystore" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
fork-tree = { path = "../../../utils/fork-tree" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus" }
|
||||
sc-block-builder = { path = "../../block-builder" }
|
||||
sc-chain-spec = { path = "../../chain-spec" }
|
||||
sc-client-api = { path = "../../api" }
|
||||
sc-transaction-pool-api = { path = "../../transaction-pool/api" }
|
||||
sc-consensus = { path = "../common" }
|
||||
sc-network = { path = "../../network" }
|
||||
sc-network-gossip = { path = "../../network-gossip" }
|
||||
sc-network-common = { path = "../../network/common" }
|
||||
sc-telemetry = { path = "../../telemetry" }
|
||||
sc-utils = { path = "../../utils" }
|
||||
sp-api = { path = "../../../primitives/api" }
|
||||
sp-application-crypto = { path = "../../../primitives/application-crypto" }
|
||||
sp-arithmetic = { path = "../../../primitives/arithmetic" }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { path = "../../../primitives/consensus/common" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-consensus-grandpa = { path = "../../../primitives/consensus/grandpa" }
|
||||
sp-keystore = { path = "../../../primitives/keystore" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
assert_matches = "1.3.0"
|
||||
finality-grandpa = { version = "0.16.2", features = ["derive-codec", "test-helpers"] }
|
||||
serde = "1.0.163"
|
||||
tokio = "1.22.0"
|
||||
sc-network = { version = "0.10.0-dev", path = "../../network" }
|
||||
sc-network-test = { version = "0.8.0", path = "../../network/test" }
|
||||
sp-keyring = { version = "24.0.0", path = "../../../primitives/keyring" }
|
||||
sp-tracing = { version = "10.0.0", path = "../../../primitives/tracing" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
||||
sc-network = { path = "../../network" }
|
||||
sc-network-test = { path = "../../network/test" }
|
||||
sp-keyring = { path = "../../../primitives/keyring" }
|
||||
sp-tracing = { path = "../../../primitives/tracing" }
|
||||
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" }
|
||||
|
||||
@@ -17,18 +17,18 @@ log = "0.4.8"
|
||||
parity-scale-codec = { version = "3.6.1", features = ["derive"] }
|
||||
serde = { version = "1.0.163", features = ["derive"] }
|
||||
thiserror = "1.0"
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../../api" }
|
||||
sc-consensus-grandpa = { version = "0.10.0-dev", path = "../" }
|
||||
sc-rpc = { version = "4.0.0-dev", path = "../../../rpc" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../../primitives/blockchain" }
|
||||
sp-core = { version = "21.0.0", path = "../../../../primitives/core" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../../primitives/runtime" }
|
||||
sc-client-api = { path = "../../../api" }
|
||||
sc-consensus-grandpa = { path = ".." }
|
||||
sc-rpc = { path = "../../../rpc" }
|
||||
sp-blockchain = { path = "../../../../primitives/blockchain" }
|
||||
sp-core = { path = "../../../../primitives/core" }
|
||||
sp-runtime = { path = "../../../../primitives/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../../../block-builder" }
|
||||
sc-rpc = { version = "4.0.0-dev", features = ["test-helpers"], path = "../../../rpc" }
|
||||
sp-core = { version = "21.0.0", path = "../../../../primitives/core" }
|
||||
sp-consensus-grandpa = { version = "4.0.0-dev", path = "../../../../primitives/consensus/grandpa" }
|
||||
sp-keyring = { version = "24.0.0", path = "../../../../primitives/keyring" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../../test-utils/runtime/client" }
|
||||
sc-block-builder = { path = "../../../block-builder" }
|
||||
sc-rpc = { path = "../../../rpc", features = ["test-helpers"]}
|
||||
sp-core = { path = "../../../../primitives/core" }
|
||||
sp-consensus-grandpa = { path = "../../../../primitives/consensus/grandpa" }
|
||||
sp-keyring = { path = "../../../../primitives/keyring" }
|
||||
substrate-test-runtime-client = { path = "../../../../test-utils/runtime/client" }
|
||||
tokio = { version = "1.22.0", features = ["macros"] }
|
||||
|
||||
@@ -22,28 +22,28 @@ futures-timer = "3.0.1"
|
||||
log = "0.4.17"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
thiserror = "1.0"
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../../utils/prometheus" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../../consensus/common" }
|
||||
sc-consensus-aura = { version = "0.10.0-dev", path = "../../consensus/aura" }
|
||||
sc-consensus-babe = { version = "0.10.0-dev", path = "../../consensus/babe" }
|
||||
sc-consensus-epochs = { version = "0.10.0-dev", path = "../../consensus/epochs" }
|
||||
sc-transaction-pool = { version = "4.0.0-dev", path = "../../transaction-pool" }
|
||||
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../../client/transaction-pool/api" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
||||
sp-consensus-aura = { version = "0.10.0-dev", path = "../../../primitives/consensus/aura" }
|
||||
sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" }
|
||||
sp-consensus-slots = { version = "0.10.0-dev", path = "../../../primitives/consensus/slots" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
|
||||
sp-keystore = { version = "0.27.0", path = "../../../primitives/keystore" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus" }
|
||||
sc-client-api = { path = "../../api" }
|
||||
sc-consensus = { path = "../common" }
|
||||
sc-consensus-aura = { path = "../aura" }
|
||||
sc-consensus-babe = { path = "../babe" }
|
||||
sc-consensus-epochs = { path = "../epochs" }
|
||||
sc-transaction-pool = { path = "../../transaction-pool" }
|
||||
sc-transaction-pool-api = { path = "../../transaction-pool/api" }
|
||||
sp-api = { path = "../../../primitives/api" }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { path = "../../../primitives/consensus/common" }
|
||||
sp-consensus-aura = { path = "../../../primitives/consensus/aura" }
|
||||
sp-consensus-babe = { path = "../../../primitives/consensus/babe" }
|
||||
sp-consensus-slots = { path = "../../../primitives/consensus/slots" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-inherents = { path = "../../../primitives/inherents" }
|
||||
sp-keystore = { path = "../../../primitives/keystore" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
sp-timestamp = { path = "../../../primitives/timestamp" }
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { version = "1.22.0", features = ["rt-multi-thread", "macros"] }
|
||||
sc-basic-authorship = { version = "0.10.0-dev", path = "../../basic-authorship" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
||||
substrate-test-runtime-transaction-pool = { version = "2.0.0", path = "../../../test-utils/runtime/transaction-pool" }
|
||||
sc-basic-authorship = { path = "../../basic-authorship" }
|
||||
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" }
|
||||
substrate-test-runtime-transaction-pool = { path = "../../../test-utils/runtime/transaction-pool" }
|
||||
|
||||
@@ -20,14 +20,14 @@ futures-timer = "3.0.1"
|
||||
log = "0.4.17"
|
||||
parking_lot = "0.12.1"
|
||||
thiserror = "1.0"
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../../utils/prometheus" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
||||
sp-consensus-pow = { version = "0.10.0-dev", path = "../../../primitives/consensus/pow" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus" }
|
||||
sc-client-api = { path = "../../api" }
|
||||
sc-consensus = { path = "../common" }
|
||||
sp-api = { path = "../../../primitives/api" }
|
||||
sp-block-builder = { path = "../../../primitives/block-builder" }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { path = "../../../primitives/consensus/common" }
|
||||
sp-consensus-pow = { path = "../../../primitives/consensus/pow" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-inherents = { path = "../../../primitives/inherents" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
|
||||
@@ -19,17 +19,17 @@ codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
futures = "0.3.21"
|
||||
futures-timer = "3.0.1"
|
||||
log = "0.4.17"
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" }
|
||||
sc-telemetry = { version = "4.0.0-dev", path = "../../telemetry" }
|
||||
sp-arithmetic = { version = "16.0.0", path = "../../../primitives/arithmetic" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
||||
sp-consensus-slots = { version = "0.10.0-dev", path = "../../../primitives/consensus/slots" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
sp-state-machine = { version = "0.28.0", path = "../../../primitives/state-machine" }
|
||||
sc-client-api = { path = "../../api" }
|
||||
sc-consensus = { path = "../common" }
|
||||
sc-telemetry = { path = "../../telemetry" }
|
||||
sp-arithmetic = { path = "../../../primitives/arithmetic" }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { path = "../../../primitives/consensus/common" }
|
||||
sp-consensus-slots = { path = "../../../primitives/consensus/slots" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-inherents = { path = "../../../primitives/inherents" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
sp-state-machine = { path = "../../../primitives/state-machine" }
|
||||
|
||||
[dev-dependencies]
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
||||
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" }
|
||||
|
||||
@@ -24,16 +24,16 @@ linked-hash-map = "0.5.4"
|
||||
log = "0.4.17"
|
||||
parity-db = "0.4.8"
|
||||
parking_lot = "0.12.1"
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sc-state-db = { version = "0.10.0-dev", path = "../state-db" }
|
||||
sc-client-api = { path = "../api" }
|
||||
sc-state-db = { path = "../state-db" }
|
||||
schnellru = "0.2.1"
|
||||
sp-arithmetic = { version = "16.0.0", path = "../../primitives/arithmetic" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-database = { version = "4.0.0-dev", path = "../../primitives/database" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
sp-state-machine = { version = "0.28.0", path = "../../primitives/state-machine" }
|
||||
sp-trie = { version = "22.0.0", path = "../../primitives/trie" }
|
||||
sp-arithmetic = { path = "../../primitives/arithmetic" }
|
||||
sp-blockchain = { path = "../../primitives/blockchain" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-database = { path = "../../primitives/database" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
sp-state-machine = { path = "../../primitives/state-machine" }
|
||||
sp-trie = { path = "../../primitives/trie" }
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.4.0"
|
||||
@@ -42,8 +42,8 @@ rand = "0.8.5"
|
||||
tempfile = "3.1.0"
|
||||
quickcheck = { version = "1.0.3", default-features = false }
|
||||
kitchensink-runtime = { path = "../../bin/node/runtime" }
|
||||
sp-tracing = { version = "10.0.0", path = "../../primitives/tracing" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||
sp-tracing = { path = "../../primitives/tracing" }
|
||||
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
||||
array-bytes = "6.1"
|
||||
|
||||
[features]
|
||||
|
||||
@@ -19,29 +19,29 @@ schnellru = "0.2.1"
|
||||
tracing = "0.1.29"
|
||||
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
sc-executor-common = { version = "0.10.0-dev", path = "common" }
|
||||
sc-executor-wasmtime = { version = "0.10.0-dev", path = "wasmtime" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-externalities = { version = "0.19.0", path = "../../primitives/externalities" }
|
||||
sp-io = { version = "23.0.0", path = "../../primitives/io" }
|
||||
sp-panic-handler = { version = "8.0.0", path = "../../primitives/panic-handler" }
|
||||
sp-runtime-interface = { version = "17.0.0", path = "../../primitives/runtime-interface" }
|
||||
sp-trie = { version = "22.0.0", path = "../../primitives/trie" }
|
||||
sp-version = { version = "22.0.0", path = "../../primitives/version" }
|
||||
sp-wasm-interface = { version = "14.0.0", path = "../../primitives/wasm-interface" }
|
||||
sc-executor-common = { path = "common" }
|
||||
sc-executor-wasmtime = { path = "wasmtime" }
|
||||
sp-api = { path = "../../primitives/api" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-externalities = { path = "../../primitives/externalities" }
|
||||
sp-io = { path = "../../primitives/io" }
|
||||
sp-panic-handler = { path = "../../primitives/panic-handler" }
|
||||
sp-runtime-interface = { path = "../../primitives/runtime-interface" }
|
||||
sp-trie = { path = "../../primitives/trie" }
|
||||
sp-version = { path = "../../primitives/version" }
|
||||
sp-wasm-interface = { path = "../../primitives/wasm-interface" }
|
||||
|
||||
[dev-dependencies]
|
||||
array-bytes = "6.1"
|
||||
assert_matches = "1.3.0"
|
||||
wat = "1.0"
|
||||
sc-runtime-test = { version = "2.0.0", path = "runtime-test" }
|
||||
substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime" }
|
||||
sp-state-machine = { version = "0.28.0", path = "../../primitives/state-machine" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
sp-maybe-compressed-blob = { version = "4.1.0-dev", path = "../../primitives/maybe-compressed-blob" }
|
||||
sc-tracing = { version = "4.0.0-dev", path = "../tracing" }
|
||||
sp-tracing = { version = "10.0.0", path = "../../primitives/tracing" }
|
||||
sc-runtime-test = { path = "runtime-test" }
|
||||
substrate-test-runtime = { path = "../../test-utils/runtime" }
|
||||
sp-state-machine = { path = "../../primitives/state-machine" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
sp-maybe-compressed-blob = { path = "../../primitives/maybe-compressed-blob" }
|
||||
sc-tracing = { path = "../tracing" }
|
||||
sp-tracing = { path = "../../primitives/tracing" }
|
||||
tracing-subscriber = "0.2.19"
|
||||
paste = "1.0"
|
||||
regex = "1.6.0"
|
||||
|
||||
@@ -16,9 +16,9 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
thiserror = "1.0.30"
|
||||
wasm-instrument = "0.3"
|
||||
sc-allocator = { version = "4.1.0-dev", path = "../../allocator" }
|
||||
sp-maybe-compressed-blob = { version = "4.1.0-dev", path = "../../../primitives/maybe-compressed-blob" }
|
||||
sp-wasm-interface = { version = "14.0.0", path = "../../../primitives/wasm-interface" }
|
||||
sc-allocator = { path = "../../allocator" }
|
||||
sp-maybe-compressed-blob = { path = "../../../primitives/maybe-compressed-blob" }
|
||||
sp-wasm-interface = { path = "../../../primitives/wasm-interface" }
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
||||
@@ -13,14 +13,14 @@ repository = "https://github.com/paritytech/substrate/"
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", default-features = false, features = ["improved_panic_error_reporting"], path = "../../../primitives/io" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-runtime-interface = { version = "17.0.0", default-features = false, path = "../../../primitives/runtime-interface" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../../primitives/std" }
|
||||
sp-core = { path = "../../../primitives/core", default-features = false}
|
||||
sp-io = { path = "../../../primitives/io", default-features = false, features = ["improved_panic_error_reporting"]}
|
||||
sp-runtime = { path = "../../../primitives/runtime", default-features = false}
|
||||
sp-runtime-interface = { path = "../../../primitives/runtime-interface", default-features = false}
|
||||
sp-std = { path = "../../../primitives/std", default-features = false}
|
||||
|
||||
[build-dependencies]
|
||||
substrate-wasm-builder = { version = "5.0.0-dev", path = "../../../utils/wasm-builder", optional = true }
|
||||
substrate-wasm-builder = { path = "../../../utils/wasm-builder", optional = true }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -27,10 +27,10 @@ wasmtime = { version = "8.0.1", default-features = false, features = [
|
||||
"pooling-allocator"
|
||||
] }
|
||||
anyhow = "1.0.68"
|
||||
sc-allocator = { version = "4.1.0-dev", path = "../../allocator" }
|
||||
sc-executor-common = { version = "0.10.0-dev", path = "../common" }
|
||||
sp-runtime-interface = { version = "17.0.0", path = "../../../primitives/runtime-interface" }
|
||||
sp-wasm-interface = { version = "14.0.0", path = "../../../primitives/wasm-interface", features = ["wasmtime"] }
|
||||
sc-allocator = { path = "../../allocator" }
|
||||
sc-executor-common = { path = "../common" }
|
||||
sp-runtime-interface = { path = "../../../primitives/runtime-interface" }
|
||||
sp-wasm-interface = { path = "../../../primitives/wasm-interface", features = ["wasmtime"] }
|
||||
|
||||
# Here we include the rustix crate in the exactly same semver-compatible version as used by
|
||||
# wasmtime and enable its 'use-libc' flag.
|
||||
@@ -42,8 +42,8 @@ rustix = { version = "0.36.7", default-features = false, features = ["std", "mm"
|
||||
|
||||
[dev-dependencies]
|
||||
wat = "1.0"
|
||||
sc-runtime-test = { version = "2.0.0", path = "../runtime-test" }
|
||||
sp-io = { version = "23.0.0", path = "../../../primitives/io" }
|
||||
sc-runtime-test = { path = "../runtime-test" }
|
||||
sp-io = { path = "../../../primitives/io" }
|
||||
tempfile = "3.3.0"
|
||||
paste = "1.0"
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
|
||||
@@ -17,8 +17,8 @@ ansi_term = "0.12.1"
|
||||
futures = "0.3.21"
|
||||
futures-timer = "3.0.1"
|
||||
log = "0.4.17"
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sc-network-common = { version = "0.10.0-dev", path = "../network/common" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../network" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
sc-client-api = { path = "../api" }
|
||||
sc-network-common = { path = "../network/common" }
|
||||
sc-network = { path = "../network" }
|
||||
sp-blockchain = { path = "../../primitives/blockchain" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
|
||||
@@ -18,9 +18,9 @@ array-bytes = "6.1"
|
||||
parking_lot = "0.12.1"
|
||||
serde_json = "1.0.85"
|
||||
thiserror = "1.0"
|
||||
sp-application-crypto = { version = "23.0.0", path = "../../primitives/application-crypto" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-keystore = { version = "0.27.0", path = "../../primitives/keystore" }
|
||||
sp-application-crypto = { path = "../../primitives/application-crypto" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-keystore = { path = "../../primitives/keystore" }
|
||||
|
||||
[dev-dependencies]
|
||||
tempfile = "3.1.0"
|
||||
|
||||
@@ -14,19 +14,19 @@ homepage = "https://substrate.io"
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
futures = "0.3"
|
||||
log = "0.4"
|
||||
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sp-consensus-beefy = { version = "4.0.0-dev", path = "../../primitives/consensus/beefy" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-mmr-primitives = { version = "4.0.0-dev", path = "../../primitives/merkle-mountain-range" }
|
||||
sc-offchain = { version = "4.0.0-dev", path = "../offchain" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
sp-api = { path = "../../primitives/api" }
|
||||
sp-blockchain = { path = "../../primitives/blockchain" }
|
||||
sc-client-api = { path = "../api" }
|
||||
sp-consensus-beefy = { path = "../../primitives/consensus/beefy" }
|
||||
sp-consensus = { path = "../../primitives/consensus/common" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-mmr-primitives = { path = "../../primitives/merkle-mountain-range" }
|
||||
sc-offchain = { path = "../offchain" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
parking_lot = "0.12.1"
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" }
|
||||
sp-tracing = { version = "10.0.0", path = "../../primitives/tracing" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||
sc-block-builder = { path = "../block-builder" }
|
||||
sp-tracing = { path = "../../primitives/tracing" }
|
||||
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
||||
tokio = "1.17.0"
|
||||
|
||||
@@ -15,11 +15,11 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
|
||||
serde = { version = "1.0.163", features = ["derive"] }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-mmr-primitives = { version = "4.0.0-dev", path = "../../../primitives/merkle-mountain-range" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
sp-api = { path = "../../../primitives/api" }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-mmr-primitives = { path = "../../../primitives/merkle-mountain-range" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
anyhow = "1"
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
@@ -21,12 +21,12 @@ libp2p = "0.51.3"
|
||||
log = "0.4.17"
|
||||
schnellru = "0.2.1"
|
||||
tracing = "0.1.29"
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../utils/prometheus" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../network/" }
|
||||
sc-network-common = { version = "0.10.0-dev", path = "../network/common" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus" }
|
||||
sc-network = { path = "../network" }
|
||||
sc-network-common = { path = "../network/common" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = "1.22.0"
|
||||
quickcheck = { version = "1.0.3", default-features = false }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
||||
|
||||
@@ -39,14 +39,14 @@ smallvec = "1.11.0"
|
||||
thiserror = "1.0"
|
||||
unsigned-varint = { version = "0.7.1", features = ["futures", "asynchronous_codec"] }
|
||||
zeroize = "1.4.3"
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../utils/prometheus" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sc-network-common = { version = "0.10.0-dev", path = "./common" }
|
||||
sc-utils = { version = "4.0.0-dev", path = "../utils" }
|
||||
sp-arithmetic = { version = "16.0.0", path = "../../primitives/arithmetic" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus" }
|
||||
sc-client-api = { path = "../api" }
|
||||
sc-network-common = { path = "common" }
|
||||
sc-utils = { path = "../utils" }
|
||||
sp-arithmetic = { path = "../../primitives/arithmetic" }
|
||||
sp-blockchain = { path = "../../primitives/blockchain" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
wasm-timer = "0.2"
|
||||
|
||||
[dev-dependencies]
|
||||
@@ -58,12 +58,12 @@ tempfile = "3.1.0"
|
||||
tokio = { version = "1.22.0", features = ["macros"] }
|
||||
tokio-util = { version = "0.7.4", features = ["compat"] }
|
||||
tokio-test = "0.4.2"
|
||||
sc-network-light = { version = "0.10.0-dev", path = "./light" }
|
||||
sc-network-sync = { version = "0.10.0-dev", path = "./sync" }
|
||||
sp-test-primitives = { version = "2.0.0", path = "../../primitives/test-primitives" }
|
||||
sp-tracing = { version = "10.0.0", path = "../../primitives/tracing" }
|
||||
substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||
sc-network-light = { path = "light" }
|
||||
sc-network-sync = { path = "sync" }
|
||||
sp-test-primitives = { path = "../../primitives/test-primitives" }
|
||||
sp-tracing = { path = "../../primitives/tracing" }
|
||||
substrate-test-runtime = { path = "../../test-utils/runtime" }
|
||||
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
||||
@@ -24,16 +24,16 @@ log = "0.4.17"
|
||||
prost = "0.11"
|
||||
thiserror = "1.0"
|
||||
unsigned-varint = { version = "0.7.1", features = ["futures", "asynchronous_codec"] }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
sc-client-api = { path = "../../api" }
|
||||
sc-network = { path = ".." }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { version = "1.22.0", features = ["full"] }
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" }
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../../consensus/common" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
||||
substrate-test-runtime = { version = "2.0.0", path = "../../../test-utils/runtime" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
||||
sc-block-builder = { path = "../../block-builder" }
|
||||
sc-consensus = { path = "../../consensus/common" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-consensus = { path = "../../../primitives/consensus/common" }
|
||||
substrate-test-runtime = { path = "../../../test-utils/runtime" }
|
||||
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" }
|
||||
|
||||
@@ -23,10 +23,10 @@ codec = { package = "parity-scale-codec", version = "3.6.1", features = [
|
||||
] }
|
||||
futures = "0.3.21"
|
||||
libp2p-identity = { version = "0.1.2", features = ["peerid"] }
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../../consensus/common" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
||||
sp-consensus-grandpa = { version = "4.0.0-dev", path = "../../../primitives/consensus/grandpa" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
sc-consensus = { path = "../../consensus/common" }
|
||||
sp-consensus = { path = "../../../primitives/consensus/common" }
|
||||
sp-consensus-grandpa = { path = "../../../primitives/consensus/grandpa" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
tempfile = "3.1.0"
|
||||
|
||||
@@ -25,9 +25,9 @@ futures = "0.3.21"
|
||||
libp2p-identity = { version = "0.1.2", features = ["peerid"] }
|
||||
log = "0.4.16"
|
||||
prost = "0.11"
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sc-client-api = { path = "../../api" }
|
||||
sc-network = { path = ".." }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
thiserror = "1.0"
|
||||
|
||||
@@ -19,8 +19,8 @@ codec = { package = "parity-scale-codec", version = "3.6.1", features = ["derive
|
||||
futures = "0.3.21"
|
||||
libp2p = "0.51.3"
|
||||
log = "0.4.17"
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../../utils/prometheus" }
|
||||
sc-network-common = { version = "0.10.0-dev", path = "../common" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
||||
sp-statement-store = { version = "4.0.0-dev", path = "../../../primitives/statement-store" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus" }
|
||||
sc-network-common = { path = "../common" }
|
||||
sc-network = { path = ".." }
|
||||
sp-consensus = { path = "../../../primitives/consensus/common" }
|
||||
sp-statement-store = { path = "../../../primitives/statement-store" }
|
||||
|
||||
@@ -29,24 +29,24 @@ prost = "0.11"
|
||||
schnellru = "0.2.1"
|
||||
smallvec = "1.11.0"
|
||||
thiserror = "1.0"
|
||||
fork-tree = { version = "3.0.0", path = "../../../utils/fork-tree" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../../utils/prometheus" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../../consensus/common" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../" }
|
||||
sc-network-common = { version = "0.10.0-dev", path = "../common" }
|
||||
sc-utils = { version = "4.0.0-dev", path = "../../utils" }
|
||||
sp-arithmetic = { version = "16.0.0", path = "../../../primitives/arithmetic" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-consensus-grandpa = { version = "4.0.0-dev", path = "../../../primitives/consensus/grandpa" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
fork-tree = { path = "../../../utils/fork-tree" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus" }
|
||||
sc-client-api = { path = "../../api" }
|
||||
sc-consensus = { path = "../../consensus/common" }
|
||||
sc-network = { path = ".." }
|
||||
sc-network-common = { path = "../common" }
|
||||
sc-utils = { path = "../../utils" }
|
||||
sp-arithmetic = { path = "../../../primitives/arithmetic" }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { path = "../../../primitives/consensus/common" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-consensus-grandpa = { path = "../../../primitives/consensus/grandpa" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { version = "1.22.0", features = ["macros"] }
|
||||
quickcheck = { version = "1.0.3", default-features = false }
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" }
|
||||
sp-test-primitives = { version = "2.0.0", path = "../../../primitives/test-primitives" }
|
||||
sp-tracing = { version = "10.0.0", path = "../../../primitives/tracing" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
||||
sc-block-builder = { path = "../../block-builder" }
|
||||
sp-test-primitives = { path = "../../../primitives/test-primitives" }
|
||||
sp-tracing = { path = "../../../primitives/tracing" }
|
||||
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" }
|
||||
|
||||
@@ -21,19 +21,19 @@ libp2p = "0.51.3"
|
||||
log = "0.4.17"
|
||||
parking_lot = "0.12.1"
|
||||
rand = "0.8.5"
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../../consensus/common" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../" }
|
||||
sc-network-common = { version = "0.10.0-dev", path = "../common" }
|
||||
sc-utils = { version = "4.0.0-dev", path = "../../utils" }
|
||||
sc-network-light = { version = "0.10.0-dev", path = "../light" }
|
||||
sc-network-sync = { version = "0.10.0-dev", path = "../sync" }
|
||||
sc-service = { version = "0.10.0-dev", default-features = false, features = ["test-helpers"], path = "../../service" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
sp-tracing = { version = "10.0.0", path = "../../../primitives/tracing" }
|
||||
substrate-test-runtime = { version = "2.0.0", path = "../../../test-utils/runtime" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
||||
sc-block-builder = { path = "../../block-builder" }
|
||||
sc-client-api = { path = "../../api" }
|
||||
sc-consensus = { path = "../../consensus/common" }
|
||||
sc-network = { path = ".." }
|
||||
sc-network-common = { path = "../common" }
|
||||
sc-utils = { path = "../../utils" }
|
||||
sc-network-light = { path = "../light" }
|
||||
sc-network-sync = { path = "../sync" }
|
||||
sc-service = { path = "../../service", default-features = false, features = ["test-helpers"]}
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { path = "../../../primitives/consensus/common" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
sp-tracing = { path = "../../../primitives/tracing" }
|
||||
substrate-test-runtime = { path = "../../../test-utils/runtime" }
|
||||
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" }
|
||||
|
||||
@@ -18,9 +18,9 @@ codec = { package = "parity-scale-codec", version = "3.6.1", features = ["derive
|
||||
futures = "0.3.21"
|
||||
libp2p = "0.51.3"
|
||||
log = "0.4.17"
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../../utils/prometheus" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../" }
|
||||
sc-network-common = { version = "0.10.0-dev", path = "../common" }
|
||||
sc-utils = { version = "4.0.0-dev", path = "../../utils" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus" }
|
||||
sc-network = { path = ".." }
|
||||
sc-network-common = { path = "../common" }
|
||||
sc-utils = { path = "../../utils" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
sp-consensus = { path = "../../../primitives/consensus/common" }
|
||||
|
||||
@@ -28,29 +28,29 @@ parking_lot = "0.12.1"
|
||||
rand = "0.8.5"
|
||||
threadpool = "1.7"
|
||||
tracing = "0.1.29"
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../network" }
|
||||
sc-network-common = { version = "0.10.0-dev", path = "../network/common" }
|
||||
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../transaction-pool/api" }
|
||||
sc-utils = { version = "4.0.0-dev", path = "../utils" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-offchain = { version = "4.0.0-dev", path = "../../primitives/offchain" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
sp-keystore = { version = "0.27.0", path = "../../primitives/keystore" }
|
||||
sp-externalities = { version = "0.19.0", path = "../../primitives/externalities" }
|
||||
sc-client-api = { path = "../api" }
|
||||
sc-network = { path = "../network" }
|
||||
sc-network-common = { path = "../network/common" }
|
||||
sc-transaction-pool-api = { path = "../transaction-pool/api" }
|
||||
sc-utils = { path = "../utils" }
|
||||
sp-api = { path = "../../primitives/api" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-offchain = { path = "../../primitives/offchain" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
sp-keystore = { path = "../../primitives/keystore" }
|
||||
sp-externalities = { path = "../../primitives/externalities" }
|
||||
log = "0.4.17"
|
||||
|
||||
[dev-dependencies]
|
||||
lazy_static = "1.4.0"
|
||||
tokio = "1.22.0"
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" }
|
||||
sc-client-db = { version = "0.10.0-dev", default-features = true, path = "../db" }
|
||||
sc-transaction-pool = { version = "4.0.0-dev", path = "../transaction-pool" }
|
||||
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../transaction-pool/api" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" }
|
||||
sp-tracing = { version = "10.0.0", path = "../../primitives/tracing" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||
sc-block-builder = { path = "../block-builder" }
|
||||
sc-client-db = { path = "../db", default-features = true}
|
||||
sc-transaction-pool = { path = "../transaction-pool" }
|
||||
sc-transaction-pool-api = { path = "../transaction-pool/api" }
|
||||
sp-consensus = { path = "../../primitives/consensus/common" }
|
||||
sp-tracing = { path = "../../primitives/tracing" }
|
||||
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
||||
@@ -14,4 +14,4 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
log = "0.4.17"
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../utils/prometheus" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus" }
|
||||
|
||||
@@ -18,10 +18,10 @@ scale-info = { version = "2.5.0", default-features = false, features = ["derive"
|
||||
serde = { version = "1.0.163", features = ["derive"] }
|
||||
serde_json = "1.0.85"
|
||||
thiserror = "1.0"
|
||||
sc-chain-spec = { version = "4.0.0-dev", path = "../chain-spec" }
|
||||
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../transaction-pool/api" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-rpc = { version = "6.0.0", path = "../../primitives/rpc" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
sp-version = { version = "22.0.0", path = "../../primitives/version" }
|
||||
sc-chain-spec = { path = "../chain-spec" }
|
||||
sc-transaction-pool-api = { path = "../transaction-pool/api" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-rpc = { path = "../../primitives/rpc" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
sp-version = { path = "../../primitives/version" }
|
||||
jsonrpsee = { version = "0.16.2", features = ["server", "client-core", "macros"] }
|
||||
|
||||
@@ -17,7 +17,7 @@ jsonrpsee = { version = "0.16.2", features = ["server"] }
|
||||
log = "0.4.17"
|
||||
serde_json = "1.0.85"
|
||||
tokio = { version = "1.22.0", features = ["parking_lot"] }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../utils/prometheus" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus" }
|
||||
tower-http = { version = "0.4.0", features = ["cors"] }
|
||||
tower = "0.4.13"
|
||||
http = "0.2.8"
|
||||
|
||||
@@ -15,16 +15,16 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] }
|
||||
# Internal chain structures for "chain_spec".
|
||||
sc-chain-spec = { version = "4.0.0-dev", path = "../chain-spec" }
|
||||
sc-chain-spec = { path = "../chain-spec" }
|
||||
# Pool for submitting extrinsics required by "transaction"
|
||||
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../transaction-pool/api" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
sp-version = { version = "22.0.0", path = "../../primitives/version" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sc-utils = { version = "4.0.0-dev", path = "../utils" }
|
||||
sc-transaction-pool-api = { path = "../transaction-pool/api" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
sp-api = { path = "../../primitives/api" }
|
||||
sp-blockchain = { path = "../../primitives/blockchain" }
|
||||
sp-version = { path = "../../primitives/version" }
|
||||
sc-client-api = { path = "../api" }
|
||||
sc-utils = { path = "../utils" }
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
thiserror = "1.0"
|
||||
serde = "1.0"
|
||||
@@ -40,11 +40,11 @@ futures-util = { version = "0.3.19", default-features = false }
|
||||
[dev-dependencies]
|
||||
serde_json = "1.0"
|
||||
tokio = { version = "1.22.0", features = ["macros"] }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||
substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" }
|
||||
sp-maybe-compressed-blob = { version = "4.1.0-dev", path = "../../primitives/maybe-compressed-blob" }
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" }
|
||||
sc-service = { version = "0.10.0-dev", features = ["test-helpers"], path = "../service" }
|
||||
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
||||
substrate-test-runtime = { path = "../../test-utils/runtime" }
|
||||
sp-consensus = { path = "../../primitives/consensus/common" }
|
||||
sp-maybe-compressed-blob = { path = "../../primitives/maybe-compressed-blob" }
|
||||
sc-block-builder = { path = "../block-builder" }
|
||||
sc-service = { path = "../service", features = ["test-helpers"]}
|
||||
assert_matches = "1.3.0"
|
||||
pretty_assertions = "1.2.1"
|
||||
|
||||
@@ -19,37 +19,37 @@ jsonrpsee = { version = "0.16.2", features = ["server"] }
|
||||
log = "0.4.17"
|
||||
parking_lot = "0.12.1"
|
||||
serde_json = "1.0.85"
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" }
|
||||
sc-chain-spec = { version = "4.0.0-dev", path = "../chain-spec" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sc-rpc-api = { version = "0.10.0-dev", path = "../rpc-api" }
|
||||
sc-tracing = { version = "4.0.0-dev", path = "../tracing" }
|
||||
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../transaction-pool/api" }
|
||||
sc-utils = { version = "4.0.0-dev", path = "../utils" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-keystore = { version = "0.27.0", path = "../../primitives/keystore" }
|
||||
sp-offchain = { version = "4.0.0-dev", path = "../../primitives/offchain" }
|
||||
sp-rpc = { version = "6.0.0", path = "../../primitives/rpc" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
sp-session = { version = "4.0.0-dev", path = "../../primitives/session" }
|
||||
sp-version = { version = "22.0.0", path = "../../primitives/version" }
|
||||
sp-statement-store = { version = "4.0.0-dev", path = "../../primitives/statement-store" }
|
||||
sc-block-builder = { path = "../block-builder" }
|
||||
sc-chain-spec = { path = "../chain-spec" }
|
||||
sc-client-api = { path = "../api" }
|
||||
sc-rpc-api = { path = "../rpc-api" }
|
||||
sc-tracing = { path = "../tracing" }
|
||||
sc-transaction-pool-api = { path = "../transaction-pool/api" }
|
||||
sc-utils = { path = "../utils" }
|
||||
sp-api = { path = "../../primitives/api" }
|
||||
sp-blockchain = { path = "../../primitives/blockchain" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-keystore = { path = "../../primitives/keystore" }
|
||||
sp-offchain = { path = "../../primitives/offchain" }
|
||||
sp-rpc = { path = "../../primitives/rpc" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
sp-session = { path = "../../primitives/session" }
|
||||
sp-version = { path = "../../primitives/version" }
|
||||
sp-statement-store = { path = "../../primitives/statement-store" }
|
||||
|
||||
tokio = "1.22.0"
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = "0.9"
|
||||
assert_matches = "1.3.0"
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../network" }
|
||||
sc-network-common = { version = "0.10.0-dev", path = "../network/common" }
|
||||
sc-transaction-pool = { version = "4.0.0-dev", path = "../transaction-pool" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" }
|
||||
sc-block-builder = { path = "../block-builder" }
|
||||
sc-network = { path = "../network" }
|
||||
sc-network-common = { path = "../network/common" }
|
||||
sc-transaction-pool = { path = "../transaction-pool" }
|
||||
sp-consensus = { path = "../../primitives/consensus/common" }
|
||||
tokio = "1.22.0"
|
||||
sp-io = { version = "23.0.0", path = "../../primitives/io" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||
sp-io = { path = "../../primitives/io" }
|
||||
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
||||
pretty_assertions = "1.2.1"
|
||||
|
||||
[features]
|
||||
|
||||
@@ -36,45 +36,45 @@ exit-future = "0.2.0"
|
||||
pin-project = "1.0.12"
|
||||
serde = "1.0.163"
|
||||
serde_json = "1.0.85"
|
||||
sc-keystore = { version = "4.0.0-dev", path = "../keystore" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
sp-trie = { version = "22.0.0", path = "../../primitives/trie" }
|
||||
sp-externalities = { version = "0.19.0", path = "../../primitives/externalities" }
|
||||
sc-utils = { version = "4.0.0-dev", path = "../utils" }
|
||||
sp-version = { version = "22.0.0", path = "../../primitives/version" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-keystore = { version = "0.27.0", path = "../../primitives/keystore" }
|
||||
sp-session = { version = "4.0.0-dev", path = "../../primitives/session" }
|
||||
sp-state-machine = { version = "0.28.0", path = "../../primitives/state-machine" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" }
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../../client/consensus/common" }
|
||||
sp-storage = { version = "13.0.0", path = "../../primitives/storage" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../network" }
|
||||
sc-network-bitswap = { version = "0.10.0-dev", path = "../network/bitswap" }
|
||||
sc-network-common = { version = "0.10.0-dev", path = "../network/common" }
|
||||
sc-network-light = { version = "0.10.0-dev", path = "../network/light" }
|
||||
sc-network-sync = { version = "0.10.0-dev", path = "../network/sync" }
|
||||
sc-network-transactions = { version = "0.10.0-dev", path = "../network/transactions" }
|
||||
sc-chain-spec = { version = "4.0.0-dev", path = "../chain-spec" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
||||
sc-client-db = { version = "0.10.0-dev", default-features = false, path = "../db" }
|
||||
sc-keystore = { path = "../keystore" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
sp-trie = { path = "../../primitives/trie" }
|
||||
sp-externalities = { path = "../../primitives/externalities" }
|
||||
sc-utils = { path = "../utils" }
|
||||
sp-version = { path = "../../primitives/version" }
|
||||
sp-blockchain = { path = "../../primitives/blockchain" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-keystore = { path = "../../primitives/keystore" }
|
||||
sp-session = { path = "../../primitives/session" }
|
||||
sp-state-machine = { path = "../../primitives/state-machine" }
|
||||
sp-consensus = { path = "../../primitives/consensus/common" }
|
||||
sc-consensus = { path = "../consensus/common" }
|
||||
sp-storage = { path = "../../primitives/storage" }
|
||||
sc-network = { path = "../network" }
|
||||
sc-network-bitswap = { path = "../network/bitswap" }
|
||||
sc-network-common = { path = "../network/common" }
|
||||
sc-network-light = { path = "../network/light" }
|
||||
sc-network-sync = { path = "../network/sync" }
|
||||
sc-network-transactions = { path = "../network/transactions" }
|
||||
sc-chain-spec = { path = "../chain-spec" }
|
||||
sc-client-api = { path = "../api" }
|
||||
sp-api = { path = "../../primitives/api" }
|
||||
sc-client-db = { path = "../db", default-features = false}
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
sc-executor = { version = "0.10.0-dev", path = "../executor" }
|
||||
sc-transaction-pool = { version = "4.0.0-dev", path = "../transaction-pool" }
|
||||
sp-transaction-pool = { version = "4.0.0-dev", path = "../../primitives/transaction-pool" }
|
||||
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../transaction-pool/api" }
|
||||
sp-transaction-storage-proof = { version = "4.0.0-dev", path = "../../primitives/transaction-storage-proof" }
|
||||
sc-rpc-server = { version = "4.0.0-dev", path = "../rpc-servers" }
|
||||
sc-rpc = { version = "4.0.0-dev", path = "../rpc" }
|
||||
sc-rpc-spec-v2 = { version = "0.10.0-dev", path = "../rpc-spec-v2" }
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" }
|
||||
sc-informant = { version = "0.10.0-dev", path = "../informant" }
|
||||
sc-telemetry = { version = "4.0.0-dev", path = "../telemetry" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.10.0-dev" }
|
||||
sc-tracing = { version = "4.0.0-dev", path = "../tracing" }
|
||||
sc-sysinfo = { version = "6.0.0-dev", path = "../sysinfo" }
|
||||
sc-executor = { path = "../executor" }
|
||||
sc-transaction-pool = { path = "../transaction-pool" }
|
||||
sp-transaction-pool = { path = "../../primitives/transaction-pool" }
|
||||
sc-transaction-pool-api = { path = "../transaction-pool/api" }
|
||||
sp-transaction-storage-proof = { path = "../../primitives/transaction-storage-proof" }
|
||||
sc-rpc-server = { path = "../rpc-servers" }
|
||||
sc-rpc = { path = "../rpc" }
|
||||
sc-rpc-spec-v2 = { path = "../rpc-spec-v2" }
|
||||
sc-block-builder = { path = "../block-builder" }
|
||||
sc-informant = { path = "../informant" }
|
||||
sc-telemetry = { path = "../telemetry" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus" }
|
||||
sc-tracing = { path = "../tracing" }
|
||||
sc-sysinfo = { path = "../sysinfo" }
|
||||
tracing = "0.1.29"
|
||||
tracing-futures = { version = "0.2.4" }
|
||||
async-trait = "0.1.57"
|
||||
@@ -84,5 +84,5 @@ directories = "4.0.1"
|
||||
static_init = "1.0.3"
|
||||
|
||||
[dev-dependencies]
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||
substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime/" }
|
||||
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
||||
substrate-test-runtime = { path = "../../test-utils/runtime" }
|
||||
|
||||
@@ -21,24 +21,24 @@ parity-scale-codec = "3.6.1"
|
||||
parking_lot = "0.12.1"
|
||||
tempfile = "3.1.0"
|
||||
tokio = { version = "1.22.0", features = ["time"] }
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../../api" }
|
||||
sc-client-db = { version = "0.10.0-dev", default-features = false, path = "../../db" }
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" }
|
||||
sc-executor = { version = "0.10.0-dev", path = "../../executor" }
|
||||
sc-network = { version = "0.10.0-dev", path = "../../network" }
|
||||
sc-network-sync = { version = "0.10.0-dev", path = "../../network/sync" }
|
||||
sc-service = { version = "0.10.0-dev", features = ["test-helpers"], path = "../../service" }
|
||||
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../../client/transaction-pool/api" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
sp-state-machine = { version = "0.28.0", path = "../../../primitives/state-machine" }
|
||||
sp-storage = { version = "13.0.0", path = "../../../primitives/storage" }
|
||||
sp-tracing = { version = "10.0.0", path = "../../../primitives/tracing" }
|
||||
sp-trie = { version = "22.0.0", path = "../../../primitives/trie" }
|
||||
sp-io = { version = "23.0.0", path = "../../../primitives/io" }
|
||||
substrate-test-runtime = { version = "2.0.0", path = "../../../test-utils/runtime" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
||||
sc-block-builder = { path = "../../block-builder" }
|
||||
sc-client-api = { path = "../../api" }
|
||||
sc-client-db = { path = "../../db", default-features = false}
|
||||
sc-consensus = { path = "../../consensus/common" }
|
||||
sc-executor = { path = "../../executor" }
|
||||
sc-network = { path = "../../network" }
|
||||
sc-network-sync = { path = "../../network/sync" }
|
||||
sc-service = { path = "..", features = ["test-helpers"]}
|
||||
sc-transaction-pool-api = { path = "../../transaction-pool/api" }
|
||||
sp-api = { path = "../../../primitives/api" }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-consensus = { path = "../../../primitives/consensus/common" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
sp-state-machine = { path = "../../../primitives/state-machine" }
|
||||
sp-storage = { path = "../../../primitives/storage" }
|
||||
sp-tracing = { path = "../../../primitives/tracing" }
|
||||
sp-trie = { path = "../../../primitives/trie" }
|
||||
sp-io = { path = "../../../primitives/io" }
|
||||
substrate-test-runtime = { path = "../../../test-utils/runtime" }
|
||||
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" }
|
||||
|
||||
@@ -16,4 +16,4 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", features = ["derive"] }
|
||||
log = "0.4.17"
|
||||
parking_lot = "0.12.1"
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
|
||||
@@ -17,14 +17,14 @@ log = "0.4.17"
|
||||
parking_lot = "0.12.1"
|
||||
parity-db = "0.4.8"
|
||||
tokio = { version = "1.22.0", features = ["time"] }
|
||||
sp-statement-store = { version = "4.0.0-dev", path = "../../primitives/statement-store" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../utils/prometheus" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sc-keystore = { version = "4.0.0-dev", path = "../../client/keystore" }
|
||||
sp-statement-store = { path = "../../primitives/statement-store" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus" }
|
||||
sp-api = { path = "../../primitives/api" }
|
||||
sp-blockchain = { path = "../../primitives/blockchain" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
sc-client-api = { path = "../api" }
|
||||
sc-keystore = { path = "../keystore" }
|
||||
|
||||
[dev-dependencies]
|
||||
tempfile = "3.1.0"
|
||||
|
||||
@@ -12,7 +12,7 @@ homepage = "https://substrate.io"
|
||||
clap = { version = "4.2.5", features = ["derive", "string"] }
|
||||
log = "0.4.17"
|
||||
fs4 = "0.6.3"
|
||||
sc-client-db = { version = "0.10.0-dev", default-features = false, path = "../db" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sc-client-db = { path = "../db", default-features = false}
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
tokio = "1.22.0"
|
||||
thiserror = "1.0.30"
|
||||
|
||||
@@ -17,10 +17,10 @@ jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"]
|
||||
serde = { version = "1.0.163", features = ["derive"] }
|
||||
serde_json = "1.0.85"
|
||||
thiserror = "1.0.30"
|
||||
sc-chain-spec = { version = "4.0.0-dev", path = "../chain-spec" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sc-consensus-babe = { version = "0.10.0-dev", path = "../consensus/babe" }
|
||||
sc-consensus-epochs = { version = "0.10.0-dev", path = "../consensus/epochs" }
|
||||
sc-consensus-grandpa = { version = "0.10.0-dev", path = "../consensus/grandpa" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
sc-chain-spec = { path = "../chain-spec" }
|
||||
sc-client-api = { path = "../api" }
|
||||
sc-consensus-babe = { path = "../consensus/babe" }
|
||||
sc-consensus-epochs = { path = "../consensus/epochs" }
|
||||
sc-consensus-grandpa = { path = "../consensus/grandpa" }
|
||||
sp-blockchain = { path = "../../primitives/blockchain" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
|
||||
@@ -22,10 +22,10 @@ rand_pcg = "0.3.1"
|
||||
regex = "1"
|
||||
serde = { version = "1.0.163", features = ["derive"] }
|
||||
serde_json = "1.0.85"
|
||||
sc-telemetry = { version = "4.0.0-dev", path = "../telemetry" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", path = "../../primitives/io" }
|
||||
sp-std = { version = "8.0.0", path = "../../primitives/std" }
|
||||
sc-telemetry = { path = "../telemetry" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-io = { path = "../../primitives/io" }
|
||||
sp-std = { path = "../../primitives/std" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
|
||||
@@ -20,7 +20,7 @@ libp2p = { version = "0.51.3", features = ["dns", "tcp", "tokio", "wasm-ext", "w
|
||||
log = "0.4.17"
|
||||
parking_lot = "0.12.1"
|
||||
pin-project = "1.0.12"
|
||||
sc-utils = { version = "4.0.0-dev", path = "../utils" }
|
||||
sc-utils = { path = "../utils" }
|
||||
rand = "0.8.5"
|
||||
serde = { version = "1.0.163", features = ["derive"] }
|
||||
serde_json = "1.0.85"
|
||||
|
||||
@@ -27,14 +27,14 @@ thiserror = "1.0.30"
|
||||
tracing = "0.1.29"
|
||||
tracing-log = "0.1.3"
|
||||
tracing-subscriber = { version = "0.2.25", features = ["parking_lot"] }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sc-tracing-proc-macro = { version = "4.0.0-dev", path = "./proc-macro" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-rpc = { version = "6.0.0", path = "../../primitives/rpc" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
sp-tracing = { version = "10.0.0", path = "../../primitives/tracing" }
|
||||
sc-client-api = { path = "../api" }
|
||||
sc-tracing-proc-macro = { path = "proc-macro" }
|
||||
sp-api = { path = "../../primitives/api" }
|
||||
sp-blockchain = { path = "../../primitives/blockchain" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-rpc = { path = "../../primitives/rpc" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
sp-tracing = { path = "../../primitives/tracing" }
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.4.0"
|
||||
|
||||
@@ -22,26 +22,26 @@ log = "0.4.17"
|
||||
parking_lot = "0.12.1"
|
||||
serde = { version = "1.0.163", features = ["derive"] }
|
||||
thiserror = "1.0.30"
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.10.0-dev", path = "../../utils/prometheus" }
|
||||
sc-client-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sc-transaction-pool-api = { version = "4.0.0-dev", path = "./api" }
|
||||
sc-utils = { version = "4.0.0-dev", path = "../utils" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../primitives/runtime" }
|
||||
sp-tracing = { version = "10.0.0", path = "../../primitives/tracing" }
|
||||
sp-transaction-pool = { version = "4.0.0-dev", path = "../../primitives/transaction-pool" }
|
||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus" }
|
||||
sc-client-api = { path = "../api" }
|
||||
sc-transaction-pool-api = { path = "api" }
|
||||
sc-utils = { path = "../utils" }
|
||||
sp-api = { path = "../../primitives/api" }
|
||||
sp-blockchain = { path = "../../primitives/blockchain" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
sp-tracing = { path = "../../primitives/tracing" }
|
||||
sp-transaction-pool = { path = "../../primitives/transaction-pool" }
|
||||
|
||||
[dev-dependencies]
|
||||
array-bytes = "6.1"
|
||||
assert_matches = "1.3.0"
|
||||
criterion = "0.4.0"
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" }
|
||||
sp-consensus = { version = "0.10.0-dev", path = "../../primitives/consensus/common" }
|
||||
substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||
substrate-test-runtime-transaction-pool = { version = "2.0.0", path = "../../test-utils/runtime/transaction-pool" }
|
||||
sc-block-builder = { path = "../block-builder" }
|
||||
sp-consensus = { path = "../../primitives/consensus/common" }
|
||||
substrate-test-runtime = { path = "../../test-utils/runtime" }
|
||||
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
||||
substrate-test-runtime-transaction-pool = { path = "../../test-utils/runtime/transaction-pool" }
|
||||
|
||||
[[bench]]
|
||||
name = "basics"
|
||||
|
||||
@@ -15,9 +15,9 @@ futures = "0.3.21"
|
||||
log = "0.4.17"
|
||||
serde = { version = "1.0.163", features = ["derive"] }
|
||||
thiserror = "1.0.30"
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-blockchain = { path = "../../../primitives/blockchain" }
|
||||
sp-core = { path = "../../../primitives/core", default-features = false}
|
||||
sp-runtime = { path = "../../../primitives/runtime", default-features = false}
|
||||
|
||||
[dev-dependencies]
|
||||
serde_json = "1.0"
|
||||
|
||||
@@ -17,7 +17,7 @@ lazy_static = "1.4.0"
|
||||
log = "0.4"
|
||||
parking_lot = "0.12.1"
|
||||
prometheus = { version = "0.13.0", default-features = false }
|
||||
sp-arithmetic = { version = "16.0.0", default-features = false, path = "../../primitives/arithmetic" }
|
||||
sp-arithmetic = { path = "../../primitives/arithmetic", default-features = false}
|
||||
|
||||
[features]
|
||||
default = [ "metered" ]
|
||||
|
||||
@@ -19,24 +19,24 @@ log = { version = "0.4.14", default-features = false }
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
|
||||
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-core-hashing = { version = "9.0.0", default-features = false, path = "../../primitives/core/hashing", optional = true }
|
||||
sp-io = { version = "23.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
sp-core = { path = "../../primitives/core", default-features = false}
|
||||
sp-core-hashing = { path = "../../primitives/core/hashing", default-features = false, optional = true }
|
||||
sp-io = { path = "../../primitives/io", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true }
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
|
||||
pallet-identity = { version = "4.0.0-dev", path = "../identity", default-features = false }
|
||||
pallet-collective = { version = "4.0.0-dev", path = "../collective", default-features = false, optional = true }
|
||||
pallet-identity = { path = "../identity", default-features = false }
|
||||
pallet-collective = { path = "../collective", default-features = false, optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
array-bytes = "6.1"
|
||||
sp-core-hashing = { version = "9.0.0", default-features = false, path = "../../primitives/core/hashing" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
pallet-collective = { version = "4.0.0-dev", path = "../collective" }
|
||||
sp-core-hashing = { path = "../../primitives/core/hashing", default-features = false}
|
||||
pallet-balances = { path = "../balances" }
|
||||
pallet-collective = { path = "../collective" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -14,20 +14,20 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../primitives/api" }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-arithmetic = { version = "16.0.0", default-features = false, path = "../../primitives/arithmetic" }
|
||||
sp-api = { path = "../../primitives/api", default-features = false}
|
||||
sp-core = { path = "../../primitives/core", default-features = false}
|
||||
sp-io = { path = "../../primitives/io", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-arithmetic = { path = "../../primitives/arithmetic", default-features = false}
|
||||
|
||||
[dev-dependencies]
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
pallet-assets = { version = "4.0.0-dev", path = "../assets" }
|
||||
pallet-balances = { path = "../balances" }
|
||||
pallet-assets = { path = "../assets" }
|
||||
primitive-types = { version = "0.12.0", default-features = false, features = ["codec", "scale-info", "num-traits"] }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -17,17 +17,17 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
|
||||
"derive",
|
||||
] }
|
||||
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, optional = true, path = "../benchmarking" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-core = { version = "21.0.0", default-features = false, optional = true, path = "../../primitives/core" }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true}
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
sp-core = { path = "../../primitives/core", default-features = false, optional = true}
|
||||
|
||||
[dev-dependencies]
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
sp-io = { version = "23.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
||||
pallet-balances = { path = "../balances" }
|
||||
sp-io = { path = "../../primitives/io" }
|
||||
sp-core = { path = "../../primitives/core", default-features = false}
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -16,20 +16,20 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
|
||||
log = { version = "0.4.17", default-features = false }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
# Needed for various traits. In our case, `OnFinalize`.
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
# Needed for type-safe access to storage DB.
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
# `system` module provides us with all sorts of useful stuff and macros depend on it being around.
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true }
|
||||
sp-core = { path = "../../primitives/core", default-features = false}
|
||||
|
||||
[dev-dependencies]
|
||||
sp-std = { version = "8.0.0", path = "../../primitives/std" }
|
||||
sp-io = { version = "23.0.0", path = "../../primitives/io" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
sp-std = { path = "../../primitives/std" }
|
||||
sp-io = { path = "../../primitives/io" }
|
||||
pallet-balances = { path = "../balances" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -15,15 +15,15 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
sp-core = { path = "../../primitives/core", default-features = false}
|
||||
sp-io = { path = "../../primitives/io", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
|
||||
[dev-dependencies]
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
pallet-balances = { path = "../balances" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -16,17 +16,17 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive", "max-encoded-len"] }
|
||||
log = { version = "0.4.17", default-features = false }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../timestamp" }
|
||||
sp-application-crypto = { version = "23.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||
sp-consensus-aura = { version = "0.10.0-dev", default-features = false, path = "../../primitives/consensus/aura" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
pallet-timestamp = { path = "../timestamp", default-features = false}
|
||||
sp-application-crypto = { path = "../../primitives/application-crypto", default-features = false}
|
||||
sp-consensus-aura = { path = "../../primitives/consensus/aura", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", path = "../../primitives/io" }
|
||||
sp-core = { path = "../../primitives/core", default-features = false}
|
||||
sp-io = { path = "../../primitives/io" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -17,19 +17,19 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
|
||||
"derive",
|
||||
] }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
pallet-session = { version = "4.0.0-dev", default-features = false, features = [
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
pallet-session = { path = "../session", default-features = false, features = [
|
||||
"historical",
|
||||
], path = "../session" }
|
||||
sp-application-crypto = { version = "23.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||
sp-authority-discovery = { version = "4.0.0-dev", default-features = false, path = "../../primitives/authority-discovery" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
]}
|
||||
sp-application-crypto = { path = "../../primitives/application-crypto", default-features = false}
|
||||
sp-authority-discovery = { path = "../../primitives/authority-discovery", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", path = "../../primitives/io" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-io = { path = "../../primitives/io" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -18,14 +18,14 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
|
||||
] }
|
||||
impl-trait-for-tuples = "0.2.2"
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", path = "../../primitives/io" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-io = { path = "../../primitives/io" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -16,28 +16,28 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
log = { version = "0.4.17", default-features = false }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive", "serde"] }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, optional = true, path = "../benchmarking" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
pallet-authorship = { version = "4.0.0-dev", default-features = false, path = "../authorship" }
|
||||
pallet-session = { version = "4.0.0-dev", default-features = false, path = "../session" }
|
||||
pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../timestamp" }
|
||||
sp-application-crypto = { version = "23.0.0", default-features = false, path = "../../primitives/application-crypto", features = ["serde"] }
|
||||
sp-consensus-babe = { version = "0.10.0-dev", default-features = false, path = "../../primitives/consensus/babe", features = ["serde"] }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core", features = ["serde"] }
|
||||
sp-io = { version = "23.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime", features = ["serde"] }
|
||||
sp-session = { version = "4.0.0-dev", default-features = false, path = "../../primitives/session" }
|
||||
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking", features = ["serde"] }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true}
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
pallet-authorship = { path = "../authorship", default-features = false}
|
||||
pallet-session = { path = "../session", default-features = false}
|
||||
pallet-timestamp = { path = "../timestamp", default-features = false}
|
||||
sp-application-crypto = { path = "../../primitives/application-crypto", default-features = false, features = ["serde"] }
|
||||
sp-consensus-babe = { path = "../../primitives/consensus/babe", default-features = false, features = ["serde"] }
|
||||
sp-core = { path = "../../primitives/core", default-features = false, features = ["serde"] }
|
||||
sp-io = { path = "../../primitives/io", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false, features = ["serde"] }
|
||||
sp-session = { path = "../../primitives/session", default-features = false}
|
||||
sp-staking = { path = "../../primitives/staking", default-features = false, features = ["serde"] }
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
|
||||
[dev-dependencies]
|
||||
frame-election-provider-support = { version = "4.0.0-dev", path = "../election-provider-support" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
pallet-offences = { version = "4.0.0-dev", path = "../offences" }
|
||||
pallet-staking = { version = "4.0.0-dev", path = "../staking" }
|
||||
pallet-staking-reward-curve = { version = "4.0.0-dev", path = "../staking/reward-curve" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
frame-election-provider-support = { path = "../election-provider-support" }
|
||||
pallet-balances = { path = "../balances" }
|
||||
pallet-offences = { path = "../offences" }
|
||||
pallet-staking = { path = "../staking" }
|
||||
pallet-staking-reward-curve = { path = "../staking/reward-curve" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -17,13 +17,13 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
|
||||
# primitives
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
|
||||
# FRAME
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
frame-election-provider-support = { version = "4.0.0-dev", default-features = false, path = "../election-provider-support" }
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
frame-election-provider-support = { path = "../election-provider-support", default-features = false}
|
||||
|
||||
# third party
|
||||
log = { version = "0.4.17", default-features = false }
|
||||
@@ -31,19 +31,19 @@ docify = "0.2.1"
|
||||
aquamarine = { version = "0.3.2" }
|
||||
|
||||
# Optional imports for benchmarking
|
||||
frame-benchmarking = { version = "4.0.0-dev", path = "../benchmarking", optional = true, default-features = false }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances", optional = true, default-features = false }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core", optional = true, default-features = false }
|
||||
sp-io = { version = "23.0.0", path = "../../primitives/io", optional = true, default-features = false }
|
||||
sp-tracing = { version = "10.0.0", path = "../../primitives/tracing", optional = true, default-features = false }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false , optional = true}
|
||||
pallet-balances = { path = "../balances", default-features = false , optional = true}
|
||||
sp-core = { path = "../../primitives/core", default-features = false , optional = true}
|
||||
sp-io = { path = "../../primitives/io", default-features = false , optional = true}
|
||||
sp-tracing = { path = "../../primitives/tracing", default-features = false , optional = true}
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core"}
|
||||
sp-io = { version = "23.0.0", path = "../../primitives/io"}
|
||||
sp-tracing = { version = "10.0.0", path = "../../primitives/tracing" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
frame-election-provider-support = { version = "4.0.0-dev", path = "../election-provider-support" }
|
||||
frame-benchmarking = { version = "4.0.0-dev", path = "../benchmarking" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-io = { path = "../../primitives/io" }
|
||||
sp-tracing = { path = "../../primitives/tracing" }
|
||||
pallet-balances = { path = "../balances" }
|
||||
frame-election-provider-support = { path = "../election-provider-support" }
|
||||
frame-benchmarking = { path = "../benchmarking" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -12,8 +12,8 @@ publish = false
|
||||
[dependencies]
|
||||
honggfuzz = "0.5"
|
||||
rand = { version = "0.8", features = ["std", "small_rng"] }
|
||||
frame-election-provider-support = { version = "4.0.0-dev", features = ["fuzz"], path = "../../election-provider-support" }
|
||||
pallet-bags-list = { version = "4.0.0-dev", features = ["fuzz"], path = ".." }
|
||||
frame-election-provider-support = { path = "../../election-provider-support", features = ["fuzz"]}
|
||||
pallet-bags-list = { path = "..", features = ["fuzz"]}
|
||||
|
||||
[[bin]]
|
||||
name = "bags-list"
|
||||
|
||||
@@ -14,21 +14,21 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
# frame
|
||||
pallet-staking = { path = "../../staking", version = "4.0.0-dev" }
|
||||
pallet-bags-list = { path = "../../bags-list", version = "4.0.0-dev", features = ["fuzz"] }
|
||||
frame-election-provider-support = { path = "../../election-provider-support", version = "4.0.0-dev" }
|
||||
frame-system = { path = "../../system", version = "4.0.0-dev" }
|
||||
frame-support = { path = "../../support", version = "4.0.0-dev" }
|
||||
pallet-staking = { path = "../../staking" }
|
||||
pallet-bags-list = { path = "..", features = ["fuzz"] }
|
||||
frame-election-provider-support = { path = "../../election-provider-support" }
|
||||
frame-system = { path = "../../system" }
|
||||
frame-support = { path = "../../support" }
|
||||
|
||||
# core
|
||||
sp-storage = { path = "../../../primitives/storage", version = "13.0.0" }
|
||||
sp-core = { path = "../../../primitives/core", version = "21.0.0" }
|
||||
sp-tracing = { path = "../../../primitives/tracing", version = "10.0.0" }
|
||||
sp-runtime = { path = "../../../primitives/runtime", version = "24.0.0" }
|
||||
sp-std = { path = "../../../primitives/std", version = "8.0.0" }
|
||||
sp-storage = { path = "../../../primitives/storage" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-tracing = { path = "../../../primitives/tracing" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
sp-std = { path = "../../../primitives/std" }
|
||||
|
||||
# utils
|
||||
remote-externalities = { path = "../../../utils/frame/remote-externalities", version = "0.10.0-dev", package = "frame-remote-externalities" }
|
||||
remote-externalities = { package = "frame-remote-externalities" , path = "../../../utils/frame/remote-externalities" }
|
||||
|
||||
# others
|
||||
log = "0.4.17"
|
||||
|
||||
@@ -16,16 +16,16 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive", "max-encoded-len"] }
|
||||
log = { version = "0.4.17", default-features = false }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, optional = true, path = "../benchmarking" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true}
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
|
||||
[dev-dependencies]
|
||||
pallet-transaction-payment = { version = "4.0.0-dev", path = "../transaction-payment" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", path = "../../primitives/io" }
|
||||
pallet-transaction-payment = { path = "../transaction-payment" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-io = { path = "../../primitives/io" }
|
||||
paste = "1.0.12"
|
||||
|
||||
[features]
|
||||
|
||||
@@ -14,23 +14,23 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
|
||||
log = { version = "0.4.17", default-features = false }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.163", optional = true }
|
||||
binary-merkle-tree = { version = "4.0.0-dev", default-features = false, path = "../../utils/binary-merkle-tree" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
pallet-beefy = { version = "4.0.0-dev", default-features = false, path = "../beefy" }
|
||||
pallet-mmr = { version = "4.0.0-dev", default-features = false, path = "../merkle-mountain-range" }
|
||||
pallet-session = { version = "4.0.0-dev", default-features = false, path = "../session" }
|
||||
sp-consensus-beefy = { version = "4.0.0-dev", default-features = false, path = "../../primitives/consensus/beefy" }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../primitives/api" }
|
||||
sp-state-machine = { version = "0.28.0", default-features = false, path = "../../primitives/state-machine" }
|
||||
binary-merkle-tree = { path = "../../utils/binary-merkle-tree", default-features = false}
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
pallet-beefy = { path = "../beefy", default-features = false}
|
||||
pallet-mmr = { path = "../merkle-mountain-range", default-features = false}
|
||||
pallet-session = { path = "../session", default-features = false}
|
||||
sp-consensus-beefy = { path = "../../primitives/consensus/beefy", default-features = false}
|
||||
sp-core = { path = "../../primitives/core", default-features = false}
|
||||
sp-io = { path = "../../primitives/io", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
sp-api = { path = "../../primitives/api", default-features = false}
|
||||
sp-state-machine = { path = "../../primitives/state-machine", default-features = false}
|
||||
|
||||
[dev-dependencies]
|
||||
array-bytes = "6.1"
|
||||
sp-staking = { version = "4.0.0-dev", path = "../../primitives/staking" }
|
||||
sp-staking = { path = "../../primitives/staking" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -13,27 +13,27 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
|
||||
log = { version = "0.4.17", default-features = false }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive", "serde"] }
|
||||
serde = { version = "1.0.163", optional = true }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
pallet-authorship = { version = "4.0.0-dev", default-features = false, path = "../authorship" }
|
||||
pallet-session = { version = "4.0.0-dev", default-features = false, path = "../session" }
|
||||
sp-consensus-beefy = { version = "4.0.0-dev", default-features = false, path = "../../primitives/consensus/beefy", features = ["serde"] }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime", features = ["serde"] }
|
||||
sp-session = { version = "4.0.0-dev", default-features = false, path = "../../primitives/session" }
|
||||
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking", features = ["serde"] }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
pallet-authorship = { path = "../authorship", default-features = false}
|
||||
pallet-session = { path = "../session", default-features = false}
|
||||
sp-consensus-beefy = { path = "../../primitives/consensus/beefy", default-features = false, features = ["serde"] }
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false, features = ["serde"] }
|
||||
sp-session = { path = "../../primitives/session", default-features = false}
|
||||
sp-staking = { path = "../../primitives/staking", default-features = false, features = ["serde"] }
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
|
||||
[dev-dependencies]
|
||||
frame-election-provider-support = { version = "4.0.0-dev", path = "../election-provider-support" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
pallet-offences = { version = "4.0.0-dev", path = "../offences" }
|
||||
pallet-staking = { version = "4.0.0-dev", path = "../staking" }
|
||||
pallet-staking-reward-curve = { version = "4.0.0-dev", path = "../staking/reward-curve" }
|
||||
pallet-timestamp = { version = "4.0.0-dev", path = "../timestamp" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", path = "../../primitives/io" }
|
||||
sp-staking = { version = "4.0.0-dev", path = "../../primitives/staking" }
|
||||
sp-state-machine = { version = "0.28.0", default-features = false, path = "../../primitives/state-machine" }
|
||||
frame-election-provider-support = { path = "../election-provider-support" }
|
||||
pallet-balances = { path = "../balances" }
|
||||
pallet-offences = { path = "../offences" }
|
||||
pallet-staking = { path = "../staking" }
|
||||
pallet-staking-reward-curve = { path = "../staking/reward-curve" }
|
||||
pallet-timestamp = { path = "../timestamp" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-io = { path = "../../primitives/io" }
|
||||
sp-staking = { path = "../../primitives/staking" }
|
||||
sp-state-machine = { path = "../../primitives/state-machine", default-features = false}
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -19,23 +19,23 @@ log = { version = "0.4.17", default-features = false }
|
||||
paste = "1.0"
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.163", optional = true }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-support-procedural = { version = "4.0.0-dev", default-features = false, path = "../support/procedural" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../primitives/api" }
|
||||
sp-application-crypto = { version = "23.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime-interface = { version = "17.0.0", default-features = false, path = "../../primitives/runtime-interface" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-storage = { version = "13.0.0", default-features = false, path = "../../primitives/storage" }
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-support-procedural = { path = "../support/procedural", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
sp-api = { path = "../../primitives/api", default-features = false}
|
||||
sp-application-crypto = { path = "../../primitives/application-crypto", default-features = false}
|
||||
sp-core = { path = "../../primitives/core", default-features = false}
|
||||
sp-io = { path = "../../primitives/io", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-runtime-interface = { path = "../../primitives/runtime-interface", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
sp-storage = { path = "../../primitives/storage", default-features = false}
|
||||
static_assertions = "1.1.0"
|
||||
|
||||
[dev-dependencies]
|
||||
array-bytes = "6.1"
|
||||
rusty-fork = { version = "0.3.0", default-features = false }
|
||||
sp-keystore = { version = "0.27.0", path = "../../primitives/keystore" }
|
||||
sp-keystore = { path = "../../primitives/keystore" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -14,12 +14,12 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../system" }
|
||||
sp-io = { version = "23.0.0", default-features = false, path = "../../../primitives/io" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../../primitives/std" }
|
||||
frame-benchmarking = { path = "..", default-features = false}
|
||||
frame-support = { path = "../../support", default-features = false}
|
||||
frame-system = { path = "../../system", default-features = false}
|
||||
sp-io = { path = "../../../primitives/io", default-features = false}
|
||||
sp-runtime = { path = "../../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../../primitives/std", default-features = false}
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -18,17 +18,17 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
|
||||
] }
|
||||
log = { version = "0.4.17", default-features = false }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, optional = true, path = "../benchmarking" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
pallet-treasury = { version = "4.0.0-dev", default-features = false, path = "../treasury" }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true}
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
pallet-treasury = { path = "../treasury", default-features = false}
|
||||
sp-core = { path = "../../primitives/core", default-features = false}
|
||||
sp-io = { path = "../../primitives/io", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
|
||||
[dev-dependencies]
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
pallet-balances = { path = "../balances" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -15,16 +15,16 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ "derive"] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
bitvec = "1"
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-arithmetic = { version = "16.0.0", default-features = false, path = "../../primitives/arithmetic" }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, optional = true, path = "../benchmarking" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
sp-arithmetic = { path = "../../primitives/arithmetic", default-features = false}
|
||||
sp-core = { path = "../../primitives/core", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true}
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
|
||||
[dev-dependencies]
|
||||
sp-io = { version = "23.0.0", path = "../../primitives/io" }
|
||||
sp-io = { path = "../../primitives/io" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -18,18 +18,18 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
|
||||
] }
|
||||
log = { version = "0.4.17", default-features = false }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, optional = true, path = "../benchmarking" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
pallet-bounties = { version = "4.0.0-dev", default-features = false, path = "../bounties" }
|
||||
pallet-treasury = { version = "4.0.0-dev", default-features = false, path = "../treasury" }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true}
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
pallet-bounties = { path = "../bounties", default-features = false}
|
||||
pallet-treasury = { path = "../treasury", default-features = false}
|
||||
sp-core = { path = "../../primitives/core", default-features = false}
|
||||
sp-io = { path = "../../primitives/io", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
|
||||
[dev-dependencies]
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
pallet-balances = { path = "../balances" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -16,13 +16,13 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
log = { version = "0.4.17", default-features = false }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, optional = true, path = "../benchmarking" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true}
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
sp-core = { path = "../../primitives/core", default-features = false}
|
||||
sp-io = { path = "../../primitives/io", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -36,17 +36,17 @@ rand_pcg = { version = "0.3", optional = true }
|
||||
|
||||
# Substrate Dependencies
|
||||
environmental = { version = "1.1.4", default-features = false }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances", optional = true, default-features = false }
|
||||
pallet-contracts-primitives = { version = "24.0.0", default-features = false, path = "primitives" }
|
||||
pallet-contracts-proc-macro = { version = "4.0.0-dev", path = "proc-macro" }
|
||||
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../primitives/api" }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true }
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
pallet-balances = { path = "../balances", default-features = false , optional = true}
|
||||
pallet-contracts-primitives = { path = "primitives", default-features = false}
|
||||
pallet-contracts-proc-macro = { path = "proc-macro" }
|
||||
sp-api = { path = "../../primitives/api", default-features = false}
|
||||
sp-core = { path = "../../primitives/core", default-features = false}
|
||||
sp-io = { path = "../../primitives/io", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
|
||||
[dev-dependencies]
|
||||
array-bytes = "6.1"
|
||||
@@ -56,12 +56,12 @@ pretty_assertions = "1"
|
||||
wat = "1"
|
||||
|
||||
# Substrate Dependencies
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
pallet-timestamp = { version = "4.0.0-dev", path = "../timestamp" }
|
||||
pallet-insecure-randomness-collective-flip = { version = "4.0.0-dev", path = "../insecure-randomness-collective-flip" }
|
||||
pallet-utility = { version = "4.0.0-dev", path = "../utility" }
|
||||
pallet-proxy = { version = "4.0.0-dev", path = "../proxy" }
|
||||
sp-keystore = { version = "0.27.0", path = "../../primitives/keystore" }
|
||||
pallet-balances = { path = "../balances" }
|
||||
pallet-timestamp = { path = "../timestamp" }
|
||||
pallet-insecure-randomness-collective-flip = { path = "../insecure-randomness-collective-flip" }
|
||||
pallet-utility = { path = "../utility" }
|
||||
pallet-proxy = { path = "../proxy" }
|
||||
sp-keystore = { path = "../../primitives/keystore" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -18,9 +18,9 @@ scale-info = { version = "2.5.0", default-features = false, features = ["derive"
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
|
||||
# Substrate Dependencies (This crate should not rely on frame)
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../../primitives/std" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-weights = { version = "20.0.0", default-features = false, path = "../../../primitives/weights" }
|
||||
sp-std = { path = "../../../primitives/std", default-features = false}
|
||||
sp-runtime = { path = "../../../primitives/runtime", default-features = false}
|
||||
sp-weights = { path = "../../../primitives/weights", default-features = false}
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -20,17 +20,17 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
|
||||
] }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.163", features = ["derive"], optional = true }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, optional = true, path = "../benchmarking" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
sp-io = { version = "23.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true}
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
sp-io = { path = "../../primitives/io", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
|
||||
[dev-dependencies]
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
pallet-scheduler = { version = "4.0.0-dev", path = "../scheduler" }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core" }
|
||||
pallet-balances = { path = "../balances" }
|
||||
pallet-scheduler = { path = "../scheduler" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -16,14 +16,14 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
log = { version = "0.4.16", default-features = false }
|
||||
scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, optional = true, path = "../benchmarking" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
sp-arithmetic = { version = "16.0.0", default-features = false, path = "../../primitives/arithmetic" }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true}
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
sp-arithmetic = { path = "../../primitives/arithmetic", default-features = false}
|
||||
sp-core = { path = "../../primitives/core", default-features = false}
|
||||
sp-io = { path = "../../primitives/io", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -18,19 +18,19 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
|
||||
] }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.163", features = ["derive"], optional = true }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, optional = true, path = "../benchmarking" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
sp-io = { version = "23.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true}
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
sp-io = { path = "../../primitives/io", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
sp-core = { path = "../../primitives/core", default-features = false}
|
||||
log = { version = "0.4.17", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
pallet-scheduler = { version = "4.0.0-dev", path = "../scheduler" }
|
||||
pallet-preimage = { version = "4.0.0-dev", path = "../preimage" }
|
||||
pallet-balances = { path = "../balances" }
|
||||
pallet-scheduler = { path = "../scheduler" }
|
||||
pallet-preimage = { path = "../preimage" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -20,32 +20,32 @@ scale-info = { version = "2.5.0", default-features = false, features = [
|
||||
] }
|
||||
log = { version = "0.4.17", default-features = false }
|
||||
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
|
||||
sp-io = { version = "23.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../primitives/npos-elections" }
|
||||
sp-arithmetic = { version = "16.0.0", default-features = false, path = "../../primitives/arithmetic" }
|
||||
frame-election-provider-support = { version = "4.0.0-dev", default-features = false, path = "../election-provider-support" }
|
||||
sp-io = { path = "../../primitives/io", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
sp-core = { path = "../../primitives/core", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-npos-elections = { path = "../../primitives/npos-elections", default-features = false}
|
||||
sp-arithmetic = { path = "../../primitives/arithmetic", default-features = false}
|
||||
frame-election-provider-support = { path = "../election-provider-support", default-features = false}
|
||||
|
||||
# Optional imports for benchmarking
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
pallet-election-provider-support-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../election-provider-support/benchmarking", optional = true }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true }
|
||||
pallet-election-provider-support-benchmarking = { path = "../election-provider-support/benchmarking", default-features = false, optional = true }
|
||||
rand = { version = "0.8.5", default-features = false, features = ["alloc", "small_rng"], optional = true }
|
||||
strum = { version = "0.24.1", default-features = false, features = ["derive"], optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
parking_lot = "0.12.1"
|
||||
rand = "0.8.5"
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "23.0.0", path = "../../primitives/io" }
|
||||
sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../primitives/npos-elections" }
|
||||
sp-tracing = { version = "10.0.0", path = "../../primitives/tracing" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
frame-benchmarking = { version = "4.0.0-dev", path = "../benchmarking" }
|
||||
sp-core = { path = "../../primitives/core", default-features = false}
|
||||
sp-io = { path = "../../primitives/io" }
|
||||
sp-npos-elections = { path = "../../primitives/npos-elections", default-features = false}
|
||||
sp-tracing = { path = "../../primitives/tracing" }
|
||||
pallet-balances = { path = "../balances" }
|
||||
frame-benchmarking = { path = "../benchmarking" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -18,22 +18,22 @@ codec = { package = "parity-scale-codec", version = "3.6.1", features = ["derive
|
||||
scale-info = { version = "2.0.1", features = ["derive"] }
|
||||
log = { version = "0.4.17", default-features = false }
|
||||
|
||||
sp-runtime = { version = "24.0.0", path = "../../../primitives/runtime" }
|
||||
sp-io = { version = "23.0.0", path = "../../../primitives/io" }
|
||||
sp-std = { version = "8.0.0", path = "../../../primitives/std" }
|
||||
sp-staking = { version = "4.0.0-dev", path = "../../../primitives/staking" }
|
||||
sp-core = { version = "21.0.0", path = "../../../primitives/core" }
|
||||
sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/npos-elections" }
|
||||
sp-tracing = { version = "10.0.0", path = "../../../primitives/tracing" }
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
sp-io = { path = "../../../primitives/io" }
|
||||
sp-std = { path = "../../../primitives/std" }
|
||||
sp-staking = { path = "../../../primitives/staking" }
|
||||
sp-core = { path = "../../../primitives/core" }
|
||||
sp-npos-elections = { path = "../../../primitives/npos-elections", default-features = false}
|
||||
sp-tracing = { path = "../../../primitives/tracing" }
|
||||
|
||||
frame-system = { version = "4.0.0-dev", path = "../../system" }
|
||||
frame-support = { version = "4.0.0-dev", path = "../../support" }
|
||||
frame-election-provider-support = { version = "4.0.0-dev", path = "../../election-provider-support" }
|
||||
frame-system = { path = "../../system" }
|
||||
frame-support = { path = "../../support" }
|
||||
frame-election-provider-support = { path = "../../election-provider-support" }
|
||||
|
||||
pallet-election-provider-multi-phase = { version = "4.0.0-dev", path = "../../election-provider-multi-phase" }
|
||||
pallet-staking = { version = "4.0.0-dev", path = "../../staking" }
|
||||
pallet-bags-list = { version = "4.0.0-dev", path = "../../bags-list" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../../balances" }
|
||||
pallet-timestamp = { version = "4.0.0-dev", path = "../../timestamp" }
|
||||
pallet-session = { version = "4.0.0-dev", path = "../../session" }
|
||||
pallet-election-provider-multi-phase = { path = ".." }
|
||||
pallet-staking = { path = "../../staking" }
|
||||
pallet-bags-list = { path = "../../bags-list" }
|
||||
pallet-balances = { path = "../../balances" }
|
||||
pallet-timestamp = { path = "../../timestamp" }
|
||||
pallet-session = { path = "../../session" }
|
||||
|
||||
|
||||
@@ -14,19 +14,19 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
frame-election-provider-solution-type = { version = "4.0.0-dev", path = "solution-type" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
sp-arithmetic = { version = "16.0.0", default-features = false, path = "../../primitives/arithmetic" }
|
||||
sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../primitives/npos-elections" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-core = { version = "21.0.0", default-features = false, path = "../../primitives/core" }
|
||||
frame-election-provider-solution-type = { path = "solution-type" }
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
sp-arithmetic = { path = "../../primitives/arithmetic", default-features = false}
|
||||
sp-npos-elections = { path = "../../primitives/npos-elections", default-features = false}
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
sp-core = { path = "../../primitives/core", default-features = false}
|
||||
|
||||
[dev-dependencies]
|
||||
rand = { version = "0.8.5", features = ["small_rng"] }
|
||||
sp-io = { version = "23.0.0", path = "../../primitives/io" }
|
||||
sp-npos-elections = { version = "4.0.0-dev", path = "../../primitives/npos-elections" }
|
||||
sp-io = { path = "../../primitives/io" }
|
||||
sp-npos-elections = { path = "../../primitives/npos-elections" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -15,12 +15,12 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = [
|
||||
"derive",
|
||||
] }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, optional = true, path = "../../benchmarking" }
|
||||
frame-election-provider-support = { version = "4.0.0-dev", default-features = false, path = ".." }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../system" }
|
||||
sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/npos-elections" }
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../../primitives/std" }
|
||||
frame-benchmarking = { path = "../../benchmarking", default-features = false, optional = true}
|
||||
frame-election-provider-support = { path = "..", default-features = false}
|
||||
frame-system = { path = "../../system", default-features = false}
|
||||
sp-npos-elections = { path = "../../../primitives/npos-elections", default-features = false}
|
||||
sp-runtime = { path = "../../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../../primitives/std", default-features = false}
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
@@ -23,8 +23,8 @@ proc-macro-crate = "1.1.3"
|
||||
[dev-dependencies]
|
||||
parity-scale-codec = "3.6.1"
|
||||
scale-info = "2.1.1"
|
||||
sp-arithmetic = { version = "16.0.0", path = "../../../primitives/arithmetic" }
|
||||
sp-arithmetic = { path = "../../../primitives/arithmetic" }
|
||||
# used by generate_solution_type:
|
||||
frame-election-provider-support = { version = "4.0.0-dev", path = ".." }
|
||||
frame-support = { version = "4.0.0-dev", path = "../../support" }
|
||||
frame-election-provider-support = { path = ".." }
|
||||
frame-support = { path = "../../support" }
|
||||
trybuild = "1.0.74"
|
||||
|
||||
@@ -19,13 +19,13 @@ rand = { version = "0.8", features = ["std", "small_rng"] }
|
||||
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
frame-election-provider-solution-type = { version = "4.0.0-dev", path = ".." }
|
||||
frame-election-provider-support = { version = "4.0.0-dev", path = "../.." }
|
||||
sp-arithmetic = { version = "16.0.0", path = "../../../../primitives/arithmetic" }
|
||||
sp-runtime = { version = "24.0.0", path = "../../../../primitives/runtime" }
|
||||
frame-election-provider-solution-type = { path = ".." }
|
||||
frame-election-provider-support = { path = "../.." }
|
||||
sp-arithmetic = { path = "../../../../primitives/arithmetic" }
|
||||
sp-runtime = { path = "../../../../primitives/runtime" }
|
||||
# used by generate_solution_type:
|
||||
sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../../../primitives/npos-elections" }
|
||||
frame-support = { version = "4.0.0-dev", path = "../../../support" }
|
||||
sp-npos-elections = { path = "../../../../primitives/npos-elections", default-features = false}
|
||||
frame-support = { path = "../../../support" }
|
||||
|
||||
[[bin]]
|
||||
name = "compact"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user