mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-29 23:07:57 +00:00
set missing metadata fields, prepping alpha.2 (#5067)
* setting first batch of descriptions * fix what I just broke * next batch * and pallets, too * last batch * set cargo.lock * keep'em dev-deps * bump version to alpha.2
This commit is contained in:
committed by
GitHub
parent
01c6b7cdde
commit
d6aa8e954c
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "node-cli"
|
||||
version = "2.0.0-alpha.1"
|
||||
version = "2.0.0-alpha.2"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
description = "Substrate node implementation in Rust."
|
||||
build = "build.rs"
|
||||
@@ -42,68 +42,68 @@ structopt = { version = "0.3.8", optional = true }
|
||||
tracing = "0.1.10"
|
||||
|
||||
# primitives
|
||||
sp-authority-discovery = { version = "2.0.0-alpha.1", path = "../../../primitives/authority-discovery" }
|
||||
sp-consensus-babe = { version = "0.8.0-alpha.1", path = "../../../primitives/consensus/babe" }
|
||||
grandpa-primitives = { version = "2.0.0-alpha.1", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" }
|
||||
sp-core = { version = "2.0.0-alpha.1", path = "../../../primitives/core" }
|
||||
sp-runtime = { version = "2.0.0-alpha.1", path = "../../../primitives/runtime" }
|
||||
sp-timestamp = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/timestamp" }
|
||||
sp-finality-tracker = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/finality-tracker" }
|
||||
sp-inherents = { version = "2.0.0-alpha.1", path = "../../../primitives/inherents" }
|
||||
sp-keyring = { version = "2.0.0-alpha.1", path = "../../../primitives/keyring" }
|
||||
sp-io = { version = "2.0.0-alpha.1", path = "../../../primitives/io" }
|
||||
sp-consensus = { version = "0.8.0-alpha.1", path = "../../../primitives/consensus/common" }
|
||||
sp-authority-discovery = { version = "2.0.0-alpha.2", path = "../../../primitives/authority-discovery" }
|
||||
sp-consensus-babe = { version = "0.8.0-alpha.2", path = "../../../primitives/consensus/babe" }
|
||||
grandpa-primitives = { version = "2.0.0-alpha.2", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" }
|
||||
sp-core = { version = "2.0.0-alpha.2", path = "../../../primitives/core" }
|
||||
sp-runtime = { version = "2.0.0-alpha.2", path = "../../../primitives/runtime" }
|
||||
sp-timestamp = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/timestamp" }
|
||||
sp-finality-tracker = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/finality-tracker" }
|
||||
sp-inherents = { version = "2.0.0-alpha.2", path = "../../../primitives/inherents" }
|
||||
sp-keyring = { version = "2.0.0-alpha.2", path = "../../../primitives/keyring" }
|
||||
sp-io = { version = "2.0.0-alpha.2", path = "../../../primitives/io" }
|
||||
sp-consensus = { version = "0.8.0-alpha.2", path = "../../../primitives/consensus/common" }
|
||||
|
||||
# client dependencies
|
||||
sc-client-api = { version = "2.0.0-alpha.1", path = "../../../client/api" }
|
||||
sc-client = { version = "0.8.0-alpha.1", path = "../../../client/" }
|
||||
sc-chain-spec = { version = "2.0.0-alpha.1", path = "../../../client/chain-spec" }
|
||||
sc-transaction-pool = { version = "2.0.0-alpha.1", path = "../../../client/transaction-pool" }
|
||||
sp-transaction-pool = { version = "2.0.0-alpha.1", path = "../../../primitives/transaction-pool" }
|
||||
sc-network = { version = "0.8.0-alpha.1", path = "../../../client/network" }
|
||||
sc-consensus-babe = { version = "0.8.0-alpha.1", path = "../../../client/consensus/babe" }
|
||||
grandpa = { version = "0.8.0-alpha.1", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" }
|
||||
sc-client-db = { version = "0.8.0-alpha.1", default-features = false, path = "../../../client/db" }
|
||||
sc-offchain = { version = "2.0.0-alpha.1", path = "../../../client/offchain" }
|
||||
sc-rpc = { version = "2.0.0-alpha.1", path = "../../../client/rpc" }
|
||||
sc-basic-authorship = { version = "0.8.0-alpha.1", path = "../../../client/basic-authorship" }
|
||||
sc-service = { version = "0.8.0-alpha.1", default-features = false, path = "../../../client/service" }
|
||||
sc-tracing = { version = "2.0.0-alpha.1", path = "../../../client/tracing" }
|
||||
sc-telemetry = { version = "2.0.0-alpha.1", path = "../../../client/telemetry" }
|
||||
sc-authority-discovery = { version = "0.8.0-alpha.1", path = "../../../client/authority-discovery" }
|
||||
sc-client-api = { version = "2.0.0-alpha.2", path = "../../../client/api" }
|
||||
sc-client = { version = "0.8.0-alpha.2", path = "../../../client/" }
|
||||
sc-chain-spec = { version = "2.0.0-alpha.2", path = "../../../client/chain-spec" }
|
||||
sc-transaction-pool = { version = "2.0.0-alpha.2", path = "../../../client/transaction-pool" }
|
||||
sp-transaction-pool = { version = "2.0.0-alpha.2", path = "../../../primitives/transaction-pool" }
|
||||
sc-network = { version = "0.8.0-alpha.2", path = "../../../client/network" }
|
||||
sc-consensus-babe = { version = "0.8.0-alpha.2", path = "../../../client/consensus/babe" }
|
||||
grandpa = { version = "0.8.0-alpha.2", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" }
|
||||
sc-client-db = { version = "0.8.0-alpha.2", default-features = false, path = "../../../client/db" }
|
||||
sc-offchain = { version = "2.0.0-alpha.2", path = "../../../client/offchain" }
|
||||
sc-rpc = { version = "2.0.0-alpha.2", path = "../../../client/rpc" }
|
||||
sc-basic-authorship = { version = "0.8.0-alpha.2", path = "../../../client/basic-authorship" }
|
||||
sc-service = { version = "0.8.0-alpha.2", default-features = false, path = "../../../client/service" }
|
||||
sc-tracing = { version = "2.0.0-alpha.2", path = "../../../client/tracing" }
|
||||
sc-telemetry = { version = "2.0.0-alpha.2", path = "../../../client/telemetry" }
|
||||
sc-authority-discovery = { version = "0.8.0-alpha.2", path = "../../../client/authority-discovery" }
|
||||
|
||||
# frame dependencies
|
||||
pallet-indices = { version = "2.0.0-alpha.1", path = "../../../frame/indices" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/timestamp" }
|
||||
pallet-contracts = { version = "2.0.0-alpha.1", path = "../../../frame/contracts" }
|
||||
frame-system = { version = "2.0.0-alpha.1", path = "../../../frame/system" }
|
||||
pallet-balances = { version = "2.0.0-alpha.1", path = "../../../frame/balances" }
|
||||
pallet-transaction-payment = { version = "2.0.0-alpha.1", path = "../../../frame/transaction-payment" }
|
||||
frame-support = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/support" }
|
||||
pallet-im-online = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/im-online" }
|
||||
pallet-authority-discovery = { version = "2.0.0-alpha.1", path = "../../../frame/authority-discovery" }
|
||||
pallet-indices = { version = "2.0.0-alpha.2", path = "../../../frame/indices" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/timestamp" }
|
||||
pallet-contracts = { version = "2.0.0-alpha.2", path = "../../../frame/contracts" }
|
||||
frame-system = { version = "2.0.0-alpha.2", path = "../../../frame/system" }
|
||||
pallet-balances = { version = "2.0.0-alpha.2", path = "../../../frame/balances" }
|
||||
pallet-transaction-payment = { version = "2.0.0-alpha.2", path = "../../../frame/transaction-payment" }
|
||||
frame-support = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/support" }
|
||||
pallet-im-online = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/im-online" }
|
||||
pallet-authority-discovery = { version = "2.0.0-alpha.2", path = "../../../frame/authority-discovery" }
|
||||
|
||||
# node-specific dependencies
|
||||
node-runtime = { version = "2.0.0-alpha.1", path = "../runtime" }
|
||||
node-rpc = { version = "2.0.0-alpha.1", path = "../rpc" }
|
||||
node-primitives = { version = "2.0.0-alpha.1", path = "../primitives" }
|
||||
node-executor = { version = "2.0.0-alpha.1", path = "../executor" }
|
||||
node-runtime = { version = "2.0.0-alpha.2", path = "../runtime" }
|
||||
node-rpc = { version = "2.0.0-alpha.2", path = "../rpc" }
|
||||
node-primitives = { version = "2.0.0-alpha.2", path = "../primitives" }
|
||||
node-executor = { version = "2.0.0-alpha.2", path = "../executor" }
|
||||
|
||||
# CLI-specific dependencies
|
||||
sc-cli = { version = "0.8.0-alpha.1", optional = true, path = "../../../client/cli" }
|
||||
frame-benchmarking-cli = { version = "2.0.0-alpha.1", optional = true, path = "../../../utils/frame/benchmarking-cli" }
|
||||
node-transaction-factory = { version = "0.8.0-alpha.1", optional = true, path = "../transaction-factory" }
|
||||
node-inspect = { version = "0.8.0-alpha.1", optional = true, path = "../inspect" }
|
||||
sc-cli = { version = "0.8.0-alpha.2", optional = true, path = "../../../client/cli" }
|
||||
frame-benchmarking-cli = { version = "2.0.0-alpha.2", optional = true, path = "../../../utils/frame/benchmarking-cli" }
|
||||
node-transaction-factory = { version = "0.8.0-alpha.2", optional = true, path = "../transaction-factory" }
|
||||
node-inspect = { version = "0.8.0-alpha.2", optional = true, path = "../inspect" }
|
||||
|
||||
# WASM-specific dependencies
|
||||
wasm-bindgen = { version = "0.2.57", optional = true }
|
||||
wasm-bindgen-futures = { version = "0.4.7", optional = true }
|
||||
browser-utils = { path = "../../../utils/browser", optional = true , version = "0.8.0-alpha.1"}
|
||||
browser-utils = { path = "../../../utils/browser", optional = true , version = "0.8.0-alpha.2"}
|
||||
|
||||
[dev-dependencies]
|
||||
sc-keystore = { version = "2.0.0-alpha.1", path = "../../../client/keystore" }
|
||||
sc-consensus-babe = { version = "0.8.0-alpha.1", features = ["test-helpers"], path = "../../../client/consensus/babe" }
|
||||
sc-consensus-epochs = { version = "0.8.0-alpha.1", path = "../../../client/consensus/epochs" }
|
||||
sc-keystore = { version = "2.0.0-alpha.2", path = "../../../client/keystore" }
|
||||
sc-consensus-babe = { version = "0.8.0-alpha.2", features = ["test-helpers"], path = "../../../client/consensus/babe" }
|
||||
sc-consensus-epochs = { version = "0.8.0-alpha.2", path = "../../../client/consensus/epochs" }
|
||||
sc-service-test = { version = "2.0.0-dev", path = "../../../client/service/test" }
|
||||
futures = "0.3.1"
|
||||
tempfile = "3.1.0"
|
||||
@@ -112,14 +112,14 @@ nix = "0.17"
|
||||
serde_json = "1.0"
|
||||
|
||||
[build-dependencies]
|
||||
build-script-utils = { version = "2.0.0-alpha.1", package = "substrate-build-script-utils", path = "../../../utils/build-script-utils" }
|
||||
build-script-utils = { version = "2.0.0-alpha.2", package = "substrate-build-script-utils", path = "../../../utils/build-script-utils" }
|
||||
structopt = { version = "0.3.8", optional = true }
|
||||
node-transaction-factory = { version = "0.8.0-alpha.1", optional = true, path = "../transaction-factory" }
|
||||
node-inspect = { version = "0.8.0-alpha.1", optional = true, path = "../inspect" }
|
||||
frame-benchmarking-cli = { version = "2.0.0-alpha.1", optional = true, path = "../../../utils/frame/benchmarking-cli" }
|
||||
node-transaction-factory = { version = "0.8.0-alpha.2", optional = true, path = "../transaction-factory" }
|
||||
node-inspect = { version = "0.8.0-alpha.2", optional = true, path = "../inspect" }
|
||||
frame-benchmarking-cli = { version = "2.0.0-alpha.2", optional = true, path = "../../../utils/frame/benchmarking-cli" }
|
||||
|
||||
[build-dependencies.sc-cli]
|
||||
version = "0.8.0-alpha.1"
|
||||
version = "0.8.0-alpha.2"
|
||||
package = "sc-cli"
|
||||
path = "../../../client/cli"
|
||||
optional = true
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "node-executor"
|
||||
version = "2.0.0-alpha.1"
|
||||
version = "2.0.0-alpha.2"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
description = "Substrate node implementation in Rust."
|
||||
edition = "2018"
|
||||
@@ -10,32 +10,32 @@ repository = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
||||
node-primitives = { version = "2.0.0-alpha.1", path = "../primitives" }
|
||||
node-runtime = { version = "2.0.0-alpha.1", path = "../runtime" }
|
||||
sc-executor = { version = "0.8.0-alpha.1", path = "../../../client/executor" }
|
||||
sp-core = { version = "2.0.0-alpha.1", path = "../../../primitives/core" }
|
||||
sp-io = { version = "2.0.0-alpha.1", path = "../../../primitives/io" }
|
||||
sp-state-machine = { version = "0.8.0-alpha.1", path = "../../../primitives/state-machine" }
|
||||
sp-trie = { version = "2.0.0-alpha.1", path = "../../../primitives/trie" }
|
||||
node-primitives = { version = "2.0.0-alpha.2", path = "../primitives" }
|
||||
node-runtime = { version = "2.0.0-alpha.2", path = "../runtime" }
|
||||
sc-executor = { version = "0.8.0-alpha.2", path = "../../../client/executor" }
|
||||
sp-core = { version = "2.0.0-alpha.2", path = "../../../primitives/core" }
|
||||
sp-io = { version = "2.0.0-alpha.2", path = "../../../primitives/io" }
|
||||
sp-state-machine = { version = "0.8.0-alpha.2", path = "../../../primitives/state-machine" }
|
||||
sp-trie = { version = "2.0.0-alpha.2", path = "../../../primitives/trie" }
|
||||
trie-root = "0.16.0"
|
||||
frame-benchmarking = { version = "2.0.0-alpha.1", path = "../../../frame/benchmarking" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.2", path = "../../../frame/benchmarking" }
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.3.0"
|
||||
frame-support = { version = "2.0.0-alpha.1", path = "../../../frame/support" }
|
||||
frame-system = { version = "2.0.0-alpha.1", path = "../../../frame/system" }
|
||||
node-testing = { version = "2.0.0-alpha.1", path = "../testing" }
|
||||
pallet-balances = { version = "2.0.0-alpha.1", path = "../../../frame/balances" }
|
||||
pallet-contracts = { version = "2.0.0-alpha.1", path = "../../../frame/contracts" }
|
||||
pallet-grandpa = { version = "2.0.0-alpha.1", path = "../../../frame/grandpa" }
|
||||
pallet-im-online = { version = "2.0.0-alpha.1", path = "../../../frame/im-online" }
|
||||
pallet-indices = { version = "2.0.0-alpha.1", path = "../../../frame/indices" }
|
||||
pallet-session = { version = "2.0.0-alpha.1", path = "../../../frame/session" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.1", path = "../../../frame/timestamp" }
|
||||
pallet-transaction-payment = { version = "2.0.0-alpha.1", path = "../../../frame/transaction-payment" }
|
||||
pallet-treasury = { version = "2.0.0-alpha.1", path = "../../../frame/treasury" }
|
||||
sp-application-crypto = { version = "2.0.0-alpha.1", path = "../../../primitives/application-crypto" }
|
||||
sp-runtime = { version = "2.0.0-alpha.1", path = "../../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.2", path = "../../../frame/support" }
|
||||
frame-system = { version = "2.0.0-alpha.2", path = "../../../frame/system" }
|
||||
node-testing = { version = "2.0.0-alpha.2", path = "../testing" }
|
||||
pallet-balances = { version = "2.0.0-alpha.2", path = "../../../frame/balances" }
|
||||
pallet-contracts = { version = "2.0.0-alpha.2", path = "../../../frame/contracts" }
|
||||
pallet-grandpa = { version = "2.0.0-alpha.2", path = "../../../frame/grandpa" }
|
||||
pallet-im-online = { version = "2.0.0-alpha.2", path = "../../../frame/im-online" }
|
||||
pallet-indices = { version = "2.0.0-alpha.2", path = "../../../frame/indices" }
|
||||
pallet-session = { version = "2.0.0-alpha.2", path = "../../../frame/session" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.2", path = "../../../frame/timestamp" }
|
||||
pallet-transaction-payment = { version = "2.0.0-alpha.2", path = "../../../frame/transaction-payment" }
|
||||
pallet-treasury = { version = "2.0.0-alpha.2", path = "../../../frame/treasury" }
|
||||
sp-application-crypto = { version = "2.0.0-alpha.2", path = "../../../primitives/application-crypto" }
|
||||
sp-runtime = { version = "2.0.0-alpha.2", path = "../../../primitives/runtime" }
|
||||
substrate-test-client = { version = "2.0.0-dev", path = "../../../test-utils/client" }
|
||||
wabt = "0.9.2"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "node-inspect"
|
||||
version = "0.8.0-alpha.1"
|
||||
version = "0.8.0-alpha.2"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -11,10 +11,10 @@ repository = "https://github.com/paritytech/substrate/"
|
||||
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
||||
derive_more = "0.99"
|
||||
log = "0.4.8"
|
||||
sc-cli = { version = "0.8.0-alpha.1", path = "../../../client/cli" }
|
||||
sc-client-api = { version = "2.0.0-alpha.1", path = "../../../client/api" }
|
||||
sc-service = { version = "0.8.0-alpha.1", default-features = false, path = "../../../client/service" }
|
||||
sp-blockchain = { version = "2.0.0-alpha.1", path = "../../../primitives/blockchain" }
|
||||
sp-core = { version = "2.0.0-alpha.1", path = "../../../primitives/core" }
|
||||
sp-runtime = { version = "2.0.0-alpha.1", path = "../../../primitives/runtime" }
|
||||
sc-cli = { version = "0.8.0-alpha.2", path = "../../../client/cli" }
|
||||
sc-client-api = { version = "2.0.0-alpha.2", path = "../../../client/api" }
|
||||
sc-service = { version = "0.8.0-alpha.2", default-features = false, path = "../../../client/service" }
|
||||
sp-blockchain = { version = "2.0.0-alpha.2", path = "../../../primitives/blockchain" }
|
||||
sp-core = { version = "2.0.0-alpha.2", path = "../../../primitives/core" }
|
||||
sp-runtime = { version = "2.0.0-alpha.2", path = "../../../primitives/runtime" }
|
||||
structopt = "0.3.8"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "node-primitives"
|
||||
version = "2.0.0-alpha.1"
|
||||
version = "2.0.0-alpha.2"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,11 +8,11 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies]
|
||||
sp-core = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/core" }
|
||||
sp-runtime = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-core = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/core" }
|
||||
sp-runtime = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-serializer = { version = "2.0.0-alpha.1", path = "../../../primitives/serializer" }
|
||||
sp-serializer = { version = "2.0.0-alpha.2", path = "../../../primitives/serializer" }
|
||||
pretty_assertions = "0.6.1"
|
||||
|
||||
[features]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "node-rpc-client"
|
||||
version = "2.0.0-alpha.1"
|
||||
version = "2.0.0-alpha.2"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -13,5 +13,5 @@ futures = "0.1.29"
|
||||
hyper = "0.12.35"
|
||||
jsonrpc-core-client = { version = "14.0.3", features = ["http", "ws"] }
|
||||
log = "0.4.8"
|
||||
node-primitives = { version = "2.0.0-alpha.1", path = "../primitives" }
|
||||
sc-rpc = { version = "2.0.0-alpha.1", path = "../../../client/rpc" }
|
||||
node-primitives = { version = "2.0.0-alpha.2", path = "../primitives" }
|
||||
sc-rpc = { version = "2.0.0-alpha.2", path = "../../../client/rpc" }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "node-rpc"
|
||||
version = "2.0.0-alpha.1"
|
||||
version = "2.0.0-alpha.2"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,20 +8,20 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies]
|
||||
sc-client = { version = "0.8.0-alpha.1", path = "../../../client/" }
|
||||
sc-client = { version = "0.8.0-alpha.2", path = "../../../client/" }
|
||||
jsonrpc-core = "14.0.3"
|
||||
node-primitives = { version = "2.0.0-alpha.1", path = "../primitives" }
|
||||
node-runtime = { version = "2.0.0-alpha.1", path = "../runtime" }
|
||||
sp-runtime = { version = "2.0.0-alpha.1", path = "../../../primitives/runtime" }
|
||||
sp-api = { version = "2.0.0-alpha.1", path = "../../../primitives/api" }
|
||||
pallet-contracts-rpc = { version = "0.8.0-alpha.1", path = "../../../frame/contracts/rpc/" }
|
||||
pallet-transaction-payment-rpc = { version = "2.0.0-alpha.1", path = "../../../frame/transaction-payment/rpc/" }
|
||||
substrate-frame-rpc-system = { version = "2.0.0-alpha.1", path = "../../../utils/frame/rpc/system" }
|
||||
sp-transaction-pool = { version = "2.0.0-alpha.1", path = "../../../primitives/transaction-pool" }
|
||||
sc-consensus-babe = { version = "0.8.0-alpha.1", path = "../../../client/consensus/babe" }
|
||||
sc-consensus-babe-rpc = { version = "0.8.0-alpha.1", path = "../../../client/consensus/babe/rpc" }
|
||||
sp-consensus-babe = { version = "0.8.0-alpha.1", path = "../../../primitives/consensus/babe" }
|
||||
sc-keystore = { version = "2.0.0-alpha.1", path = "../../../client/keystore" }
|
||||
sc-consensus-epochs = { version = "0.8.0-alpha.1", path = "../../../client/consensus/epochs" }
|
||||
sp-consensus = { version = "0.8.0-alpha.1", path = "../../../primitives/consensus/common" }
|
||||
sp-blockchain = { version = "2.0.0-alpha.1", path = "../../../primitives/blockchain" }
|
||||
node-primitives = { version = "2.0.0-alpha.2", path = "../primitives" }
|
||||
node-runtime = { version = "2.0.0-alpha.2", path = "../runtime" }
|
||||
sp-runtime = { version = "2.0.0-alpha.2", path = "../../../primitives/runtime" }
|
||||
sp-api = { version = "2.0.0-alpha.2", path = "../../../primitives/api" }
|
||||
pallet-contracts-rpc = { version = "0.8.0-alpha.2", path = "../../../frame/contracts/rpc/" }
|
||||
pallet-transaction-payment-rpc = { version = "2.0.0-alpha.2", path = "../../../frame/transaction-payment/rpc/" }
|
||||
substrate-frame-rpc-system = { version = "2.0.0-alpha.2", path = "../../../utils/frame/rpc/system" }
|
||||
sp-transaction-pool = { version = "2.0.0-alpha.2", path = "../../../primitives/transaction-pool" }
|
||||
sc-consensus-babe = { version = "0.8.0-alpha.2", path = "../../../client/consensus/babe" }
|
||||
sc-consensus-babe-rpc = { version = "0.8.0-alpha.2", path = "../../../client/consensus/babe/rpc" }
|
||||
sp-consensus-babe = { version = "0.8.0-alpha.2", path = "../../../primitives/consensus/babe" }
|
||||
sc-keystore = { version = "2.0.0-alpha.2", path = "../../../client/keystore" }
|
||||
sc-consensus-epochs = { version = "0.8.0-alpha.2", path = "../../../client/consensus/epochs" }
|
||||
sp-consensus = { version = "0.8.0-alpha.2", path = "../../../primitives/consensus/common" }
|
||||
sp-blockchain = { version = "2.0.0-alpha.2", path = "../../../primitives/blockchain" }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "node-runtime"
|
||||
version = "2.0.0-alpha.1"
|
||||
version = "2.0.0-alpha.2"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
build = "build.rs"
|
||||
@@ -17,64 +17,64 @@ rustc-hex = { version = "2.0", optional = true }
|
||||
serde = { version = "1.0.102", optional = true }
|
||||
|
||||
# primitives
|
||||
sp-authority-discovery = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/authority-discovery" }
|
||||
sp-consensus-babe = { version = "0.8.0-alpha.1", default-features = false, path = "../../../primitives/consensus/babe" }
|
||||
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0-alpha.1"}
|
||||
sp-inherents = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/inherents" }
|
||||
node-primitives = { version = "2.0.0-alpha.1", default-features = false, path = "../primitives" }
|
||||
sp-offchain = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/offchain" }
|
||||
sp-core = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/core" }
|
||||
sp-std = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/std" }
|
||||
sp-api = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/api" }
|
||||
sp-runtime = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-staking = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/staking" }
|
||||
sp-keyring = { version = "2.0.0-alpha.1", optional = true, path = "../../../primitives/keyring" }
|
||||
sp-session = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/session" }
|
||||
sp-transaction-pool = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/transaction-pool" }
|
||||
sp-version = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/version" }
|
||||
sp-authority-discovery = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/authority-discovery" }
|
||||
sp-consensus-babe = { version = "0.8.0-alpha.2", default-features = false, path = "../../../primitives/consensus/babe" }
|
||||
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0-alpha.2"}
|
||||
sp-inherents = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/inherents" }
|
||||
node-primitives = { version = "2.0.0-alpha.2", default-features = false, path = "../primitives" }
|
||||
sp-offchain = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/offchain" }
|
||||
sp-core = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/core" }
|
||||
sp-std = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/std" }
|
||||
sp-api = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/api" }
|
||||
sp-runtime = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-staking = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/staking" }
|
||||
sp-keyring = { version = "2.0.0-alpha.2", optional = true, path = "../../../primitives/keyring" }
|
||||
sp-session = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/session" }
|
||||
sp-transaction-pool = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/transaction-pool" }
|
||||
sp-version = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/version" }
|
||||
|
||||
# frame dependencies
|
||||
frame-executive = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/executive" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/benchmarking" }
|
||||
frame-support = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/support" }
|
||||
frame-system = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/system" }
|
||||
frame-system-rpc-runtime-api = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
|
||||
pallet-authority-discovery = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/authority-discovery" }
|
||||
pallet-authorship = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/authorship" }
|
||||
pallet-babe = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/babe" }
|
||||
pallet-balances = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/balances" }
|
||||
pallet-collective = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/collective" }
|
||||
pallet-contracts = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/contracts" }
|
||||
pallet-contracts-primitives = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/contracts/common/" }
|
||||
pallet-contracts-rpc-runtime-api = { version = "0.8.0-alpha.1", default-features = false, path = "../../../frame/contracts/rpc/runtime-api/" }
|
||||
pallet-democracy = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/democracy" }
|
||||
pallet-elections-phragmen = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/elections-phragmen" }
|
||||
pallet-finality-tracker = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/finality-tracker" }
|
||||
pallet-grandpa = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/grandpa" }
|
||||
pallet-im-online = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/im-online" }
|
||||
pallet-indices = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/indices" }
|
||||
pallet-identity = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/identity" }
|
||||
pallet-membership = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/membership" }
|
||||
pallet-offences = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/offences" }
|
||||
pallet-randomness-collective-flip = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/randomness-collective-flip" }
|
||||
pallet-recovery = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/recovery" }
|
||||
pallet-session = { version = "2.0.0-alpha.1", features = ["historical"], path = "../../../frame/session", default-features = false }
|
||||
pallet-staking = { version = "2.0.0-alpha.1", features = ["migrate"], path = "../../../frame/staking", default-features = false }
|
||||
pallet-staking-reward-curve = { version = "2.0.0-alpha.1", path = "../../../frame/staking/reward-curve" }
|
||||
pallet-sudo = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/sudo" }
|
||||
pallet-society = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/society" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/timestamp" }
|
||||
pallet-treasury = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/treasury" }
|
||||
pallet-utility = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/utility" }
|
||||
pallet-transaction-payment = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/transaction-payment" }
|
||||
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
|
||||
pallet-vesting = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/vesting" }
|
||||
frame-executive = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/executive" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/benchmarking" }
|
||||
frame-support = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/support" }
|
||||
frame-system = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/system" }
|
||||
frame-system-rpc-runtime-api = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
|
||||
pallet-authority-discovery = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/authority-discovery" }
|
||||
pallet-authorship = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/authorship" }
|
||||
pallet-babe = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/babe" }
|
||||
pallet-balances = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/balances" }
|
||||
pallet-collective = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/collective" }
|
||||
pallet-contracts = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/contracts" }
|
||||
pallet-contracts-primitives = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/contracts/common/" }
|
||||
pallet-contracts-rpc-runtime-api = { version = "0.8.0-alpha.2", default-features = false, path = "../../../frame/contracts/rpc/runtime-api/" }
|
||||
pallet-democracy = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/democracy" }
|
||||
pallet-elections-phragmen = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/elections-phragmen" }
|
||||
pallet-finality-tracker = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/finality-tracker" }
|
||||
pallet-grandpa = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/grandpa" }
|
||||
pallet-im-online = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/im-online" }
|
||||
pallet-indices = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/indices" }
|
||||
pallet-identity = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/identity" }
|
||||
pallet-membership = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/membership" }
|
||||
pallet-offences = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/offences" }
|
||||
pallet-randomness-collective-flip = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/randomness-collective-flip" }
|
||||
pallet-recovery = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/recovery" }
|
||||
pallet-session = { version = "2.0.0-alpha.2", features = ["historical"], path = "../../../frame/session", default-features = false }
|
||||
pallet-staking = { version = "2.0.0-alpha.2", features = ["migrate"], path = "../../../frame/staking", default-features = false }
|
||||
pallet-staking-reward-curve = { version = "2.0.0-alpha.2", path = "../../../frame/staking/reward-curve" }
|
||||
pallet-sudo = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/sudo" }
|
||||
pallet-society = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/society" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/timestamp" }
|
||||
pallet-treasury = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/treasury" }
|
||||
pallet-utility = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/utility" }
|
||||
pallet-transaction-payment = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/transaction-payment" }
|
||||
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
|
||||
pallet-vesting = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/vesting" }
|
||||
|
||||
[build-dependencies]
|
||||
wasm-builder-runner = { version = "1.0.5", package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-io = { version = "2.0.0-alpha.1", path = "../../../primitives/io" }
|
||||
sp-io = { version = "2.0.0-alpha.2", path = "../../../primitives/io" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "node-testing"
|
||||
version = "2.0.0-alpha.1"
|
||||
version = "2.0.0-alpha.2"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
description = "Test utilities for Substrate node."
|
||||
edition = "2018"
|
||||
@@ -10,47 +10,47 @@ repository = "https://github.com/paritytech/substrate/"
|
||||
publish = true
|
||||
|
||||
[dependencies]
|
||||
pallet-balances = { version = "2.0.0-alpha.1", path = "../../../frame/balances" }
|
||||
sc-client = { version = "0.8.0-alpha.1", path = "../../../client/" }
|
||||
sc-client-db = { version = "0.8.0-alpha.1", path = "../../../client/db/", features = ["kvdb-rocksdb"] }
|
||||
sc-client-api = { version = "2.0.0-alpha.1", path = "../../../client/api/" }
|
||||
pallet-balances = { version = "2.0.0-alpha.2", path = "../../../frame/balances" }
|
||||
sc-client = { version = "0.8.0-alpha.2", path = "../../../client/" }
|
||||
sc-client-db = { version = "0.8.0-alpha.2", path = "../../../client/db/", features = ["kvdb-rocksdb"] }
|
||||
sc-client-api = { version = "2.0.0-alpha.2", path = "../../../client/api/" }
|
||||
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
||||
pallet-contracts = { version = "2.0.0-alpha.1", path = "../../../frame/contracts" }
|
||||
pallet-grandpa = { version = "2.0.0-alpha.1", path = "../../../frame/grandpa" }
|
||||
pallet-indices = { version = "2.0.0-alpha.1", path = "../../../frame/indices" }
|
||||
sp-keyring = { version = "2.0.0-alpha.1", path = "../../../primitives/keyring" }
|
||||
node-executor = { version = "2.0.0-alpha.1", path = "../executor" }
|
||||
node-primitives = { version = "2.0.0-alpha.1", path = "../primitives" }
|
||||
node-runtime = { version = "2.0.0-alpha.1", path = "../runtime" }
|
||||
sp-core = { version = "2.0.0-alpha.1", path = "../../../primitives/core" }
|
||||
sp-io = { version = "2.0.0-alpha.1", path = "../../../primitives/io" }
|
||||
frame-support = { version = "2.0.0-alpha.1", path = "../../../frame/support" }
|
||||
pallet-session = { version = "2.0.0-alpha.1", path = "../../../frame/session" }
|
||||
pallet-society = { version = "2.0.0-alpha.1", path = "../../../frame/society" }
|
||||
sp-runtime = { version = "2.0.0-alpha.1", path = "../../../primitives/runtime" }
|
||||
pallet-staking = { version = "2.0.0-alpha.1", path = "../../../frame/staking" }
|
||||
sc-executor = { version = "0.8.0-alpha.1", path = "../../../client/executor", features = ["wasmtime"] }
|
||||
sp-consensus = { version = "0.8.0-alpha.1", path = "../../../primitives/consensus/common" }
|
||||
frame-system = { version = "2.0.0-alpha.1", path = "../../../frame/system" }
|
||||
pallet-contracts = { version = "2.0.0-alpha.2", path = "../../../frame/contracts" }
|
||||
pallet-grandpa = { version = "2.0.0-alpha.2", path = "../../../frame/grandpa" }
|
||||
pallet-indices = { version = "2.0.0-alpha.2", path = "../../../frame/indices" }
|
||||
sp-keyring = { version = "2.0.0-alpha.2", path = "../../../primitives/keyring" }
|
||||
node-executor = { version = "2.0.0-alpha.2", path = "../executor" }
|
||||
node-primitives = { version = "2.0.0-alpha.2", path = "../primitives" }
|
||||
node-runtime = { version = "2.0.0-alpha.2", path = "../runtime" }
|
||||
sp-core = { version = "2.0.0-alpha.2", path = "../../../primitives/core" }
|
||||
sp-io = { version = "2.0.0-alpha.2", path = "../../../primitives/io" }
|
||||
frame-support = { version = "2.0.0-alpha.2", path = "../../../frame/support" }
|
||||
pallet-session = { version = "2.0.0-alpha.2", path = "../../../frame/session" }
|
||||
pallet-society = { version = "2.0.0-alpha.2", path = "../../../frame/society" }
|
||||
sp-runtime = { version = "2.0.0-alpha.2", path = "../../../primitives/runtime" }
|
||||
pallet-staking = { version = "2.0.0-alpha.2", path = "../../../frame/staking" }
|
||||
sc-executor = { version = "0.8.0-alpha.2", path = "../../../client/executor", features = ["wasmtime"] }
|
||||
sp-consensus = { version = "0.8.0-alpha.2", path = "../../../primitives/consensus/common" }
|
||||
frame-system = { version = "2.0.0-alpha.2", path = "../../../frame/system" }
|
||||
substrate-test-client = { version = "2.0.0-dev", path = "../../../test-utils/client" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.1", path = "../../../frame/timestamp" }
|
||||
pallet-transaction-payment = { version = "2.0.0-alpha.1", path = "../../../frame/transaction-payment" }
|
||||
pallet-treasury = { version = "2.0.0-alpha.1", path = "../../../frame/treasury" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.2", path = "../../../frame/timestamp" }
|
||||
pallet-transaction-payment = { version = "2.0.0-alpha.2", path = "../../../frame/transaction-payment" }
|
||||
pallet-treasury = { version = "2.0.0-alpha.2", path = "../../../frame/treasury" }
|
||||
wabt = "0.9.2"
|
||||
sp-api = { version = "2.0.0-alpha.1", path = "../../../primitives/api" }
|
||||
sp-finality-tracker = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/finality-tracker" }
|
||||
sp-timestamp = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/timestamp" }
|
||||
sp-block-builder = { version = "2.0.0-alpha.1", path = "../../../primitives/block-builder" }
|
||||
sp-inherents = { version = "2.0.0-alpha.1", path = "../../../primitives/inherents" }
|
||||
sp-blockchain = { version = "2.0.0-alpha.1", path = "../../../primitives/blockchain" }
|
||||
sp-api = { version = "2.0.0-alpha.2", path = "../../../primitives/api" }
|
||||
sp-finality-tracker = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/finality-tracker" }
|
||||
sp-timestamp = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/timestamp" }
|
||||
sp-block-builder = { version = "2.0.0-alpha.2", path = "../../../primitives/block-builder" }
|
||||
sp-inherents = { version = "2.0.0-alpha.2", path = "../../../primitives/inherents" }
|
||||
sp-blockchain = { version = "2.0.0-alpha.2", path = "../../../primitives/blockchain" }
|
||||
log = "0.4.8"
|
||||
tempfile = "3.1.0"
|
||||
fs_extra = "1"
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.3.0"
|
||||
sc-cli = { version = "0.8.0-alpha.1", path = "../../../client/cli" }
|
||||
sc-service = { version = "0.8.0-alpha.1", path = "../../../client/service", features = ["rocksdb"] }
|
||||
sc-cli = { version = "0.8.0-alpha.2", path = "../../../client/cli" }
|
||||
sc-service = { version = "0.8.0-alpha.2", path = "../../../client/service", features = ["rocksdb"] }
|
||||
|
||||
[[bench]]
|
||||
name = "import"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "node-transaction-factory"
|
||||
version = "0.8.0-alpha.1"
|
||||
version = "0.8.0-alpha.2"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,15 +8,15 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies]
|
||||
sp-block-builder = { version = "2.0.0-alpha.1", path = "../../../primitives/block-builder" }
|
||||
sc-cli = { version = "0.8.0-alpha.1", path = "../../../client/cli" }
|
||||
sc-client-api = { version = "2.0.0-alpha.1", path = "../../../client/api" }
|
||||
sc-client = { version = "0.8.0-alpha.1", path = "../../../client" }
|
||||
sp-block-builder = { version = "2.0.0-alpha.2", path = "../../../primitives/block-builder" }
|
||||
sc-cli = { version = "0.8.0-alpha.2", path = "../../../client/cli" }
|
||||
sc-client-api = { version = "2.0.0-alpha.2", path = "../../../client/api" }
|
||||
sc-client = { version = "0.8.0-alpha.2", path = "../../../client" }
|
||||
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
|
||||
sp-consensus = { version = "0.8.0-alpha.1", path = "../../../primitives/consensus/common" }
|
||||
sp-consensus = { version = "0.8.0-alpha.2", path = "../../../primitives/consensus/common" }
|
||||
log = "0.4.8"
|
||||
sp-core = { version = "2.0.0-alpha.1", path = "../../../primitives/core" }
|
||||
sp-api = { version = "2.0.0-alpha.1", path = "../../../primitives/api" }
|
||||
sp-runtime = { version = "2.0.0-alpha.1", path = "../../../primitives/runtime" }
|
||||
sc-service = { version = "0.8.0-alpha.1", path = "../../../client/service" }
|
||||
sp-blockchain = { version = "2.0.0-alpha.1", path = "../../../primitives/blockchain" }
|
||||
sp-core = { version = "2.0.0-alpha.2", path = "../../../primitives/core" }
|
||||
sp-api = { version = "2.0.0-alpha.2", path = "../../../primitives/api" }
|
||||
sp-runtime = { version = "2.0.0-alpha.2", path = "../../../primitives/runtime" }
|
||||
sc-service = { version = "0.8.0-alpha.2", path = "../../../client/service" }
|
||||
sp-blockchain = { version = "2.0.0-alpha.2", path = "../../../primitives/blockchain" }
|
||||
|
||||
Reference in New Issue
Block a user