-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump cumulus/polkadot/substrate to 0.9.1 * Fix compilation * Updated specs * Bump version * Fix code formatting * Update rococo_local_testnet spec * Added timestamp inherent provider for parachain * Bump to latest cumulus * Build fixes * Updated specs Co-authored-by: Pavel Sheremetev <[email protected]>
- Loading branch information
Showing
28 changed files
with
2,798 additions
and
2,365 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "robonomics" | ||
version = "0.28.2" | ||
version = "0.29.0" | ||
authors = ["Airalab <[email protected]>"] | ||
description = "Robonomics node implementation in Rust & Substrate." | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "node-cli" | ||
version = "0.28.2" | ||
version = "0.29.0" | ||
authors = ["Airalab <[email protected]>"] | ||
description = "Robonomics node console line interface." | ||
build = "build.rs" | ||
|
@@ -19,70 +19,73 @@ log = "0.4" | |
|
||
# primitives | ||
node-primitives = { path = "../primitives", default-features = false } | ||
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sp-api = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sp-session = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sp-authorship = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sp-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
|
||
# client dependencies | ||
sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sc-informant = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sc-service = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", default-features = false } | ||
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sc-finality-grandpa-warp-sync = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sc-informant = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", default-features = false } | ||
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sc-finality-grandpa-warp-sync = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
|
||
# frame dependencies | ||
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", optional = true } | ||
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", optional = true } | ||
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
pallet-robonomics-lighthouse = { path = "../../../robonomics/frame/lighthouse", optional = true } | ||
|
||
# cumulus dependencies | ||
cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "rococo-v1", optional = true } | ||
cumulus-client-consensus-relay-chain = { git = "https://github.com/paritytech/cumulus", branch = "rococo-v1", optional = true } | ||
cumulus-client-collator = { git = "https://github.com/paritytech/cumulus", branch = "rococo-v1", optional = true } | ||
cumulus-client-network = { git = "https://github.com/paritytech/cumulus", branch = "rococo-v1", optional = true } | ||
cumulus-client-service = { git = "https://github.com/paritytech/cumulus", branch = "rococo-v1", optional = true } | ||
cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.1", optional = true } | ||
cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.1", optional = true } | ||
cumulus-client-consensus-relay-chain = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.1", optional = true } | ||
cumulus-client-collator = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.1", optional = true } | ||
cumulus-client-network = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.1", optional = true } | ||
cumulus-client-service = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.1", optional = true } | ||
|
||
# polkadot dependencies | ||
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "rococo-v1", optional = true } | ||
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "rococo-v1", optional = true } | ||
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "rococo-v1", optional = true } | ||
polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "rococo-v1", optional = true } | ||
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.1", optional = true } | ||
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.1", optional = true } | ||
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.1", optional = true } | ||
polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.1", optional = true } | ||
|
||
# node-specific dependencies | ||
node-rpc = { path = "../rpc", optional = true } | ||
node-runtime = { path = "../runtime", optional = true } | ||
parachain-runtime = { path = "../runtime/parachain", optional = true } | ||
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
|
||
# CLI-specific dependencies | ||
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", optional = true } | ||
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", optional = true } | ||
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", optional = true } | ||
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", optional = true } | ||
|
||
# Robonomics-specific dependencies | ||
rosrust = { version = "0.9.5", optional = true } | ||
|
@@ -91,11 +94,11 @@ robonomics-cli = { path = "../../../robonomics/cli", optional = true } | |
|
||
[build-dependencies] | ||
node-runtime = { path = "../runtime", optional = true } | ||
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", optional = true } | ||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", optional = true } | ||
polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "rococo-v1", optional = true } | ||
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1", optional = true } | ||
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } | ||
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", optional = true } | ||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", optional = true } | ||
polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.1", optional = true } | ||
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1", optional = true } | ||
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.1" } | ||
robonomics-cli = { path = "../../../robonomics/cli", optional = true } | ||
vergen = { version = "3.1.0", optional = true } | ||
structopt = { version = "0.3.8", optional = true } | ||
|
@@ -141,6 +144,7 @@ parachain = [ | |
"parachain-runtime", | ||
"pallet-robonomics-lighthouse", | ||
"cumulus-primitives-core", | ||
"cumulus-primitives-parachain-inherent", | ||
"cumulus-client-consensus-relay-chain", | ||
"cumulus-client-collator", | ||
"cumulus-client-network", | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.