forked from airalab/robonomics
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch back to using paritytech substrate repo
- Loading branch information
Showing
12 changed files
with
1,152 additions
and
1,112 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 |
---|---|---|
|
@@ -5,8 +5,14 @@ authors = ["Airalab <[email protected]>"] | |
description = "Robonomics node implementation in Rust & Substrate." | ||
build = "build.rs" | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
default-run = "robonomics" | ||
|
||
[badges] | ||
maintenance = { status = "actively-developed" } | ||
is-it-maintained-issue-resolution = { repository = "airalab/substrate-node-robonomics" } | ||
is-it-maintained-open-issues = { repository = "airalab/substrate-node-robonomics" } | ||
|
||
[[bin]] | ||
name = "robonomics" | ||
path = "bin/main.rs" | ||
|
@@ -15,11 +21,6 @@ required-features = ["cli"] | |
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|
||
[badges] | ||
maintenance = { status = "actively-developed" } | ||
is-it-maintained-issue-resolution = { repository = "airalab/substrate-node-robonomics" } | ||
is-it-maintained-open-issues = { repository = "airalab/substrate-node-robonomics" } | ||
|
||
[dependencies] | ||
# third-party dependencies | ||
futures = { version = "0.3.1", features = ["compat"] } | ||
|
@@ -32,64 +33,64 @@ structopt = { version = "0.3.8", optional = true } | |
jsonrpc-core = "13.2.0" | ||
|
||
# primitives | ||
node-primitives = { git = "https://github.com/airalab/substrate", default-features = false } | ||
sp-authority-discovery = { git = "https://github.com/airalab/substrate" } | ||
sp-consensus-babe = { git = "https://github.com/airalab/substrate" } | ||
sp-finality-grandpa = { git = "https://github.com/airalab/substrate" } | ||
sp-api = { git = "https://github.com/airalab/substrate" } | ||
sp-core = { git = "https://github.com/airalab/substrate" } | ||
sp-session = { git = "https://github.com/airalab/substrate" } | ||
sp-runtime = { git = "https://github.com/airalab/substrate" } | ||
sp-offchain = { git = "https://github.com/airalab/substrate" } | ||
sp-consensus = { git = "https://github.com/airalab/substrate" } | ||
sp-inherents = { git = "https://github.com/airalab/substrate" } | ||
sp-blockchain = { git = "https://github.com/airalab/substrate" } | ||
sp-block-builder = { git = "https://github.com/airalab/substrate" } | ||
sp-transaction-pool = { git = "https://github.com/airalab/substrate" } | ||
node-primitives = { git = "https://github.com/paritytech/substrate", default-features = false } | ||
sp-authority-discovery = { git = "https://github.com/paritytech/substrate" } | ||
sp-consensus-babe = { git = "https://github.com/paritytech/substrate" } | ||
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate" } | ||
sp-api = { git = "https://github.com/paritytech/substrate" } | ||
sp-core = { git = "https://github.com/paritytech/substrate" } | ||
sp-session = { git = "https://github.com/paritytech/substrate" } | ||
sp-runtime = { git = "https://github.com/paritytech/substrate" } | ||
sp-offchain = { git = "https://github.com/paritytech/substrate" } | ||
sp-consensus = { git = "https://github.com/paritytech/substrate" } | ||
sp-inherents = { git = "https://github.com/paritytech/substrate" } | ||
sp-blockchain = { git = "https://github.com/paritytech/substrate" } | ||
sp-block-builder = { git = "https://github.com/paritytech/substrate" } | ||
sp-transaction-pool = { git = "https://github.com/paritytech/substrate" } | ||
|
||
# client dependencies | ||
sc-client = { git = "https://github.com/airalab/substrate" } | ||
sc-client-db = { git = "https://github.com/airalab/substrate" } | ||
sc-client-api = { git = "https://github.com/airalab/substrate" } | ||
sc-chain-spec = { git = "https://github.com/airalab/substrate" } | ||
sc-transaction-pool = { git = "https://github.com/airalab/substrate" } | ||
sc-network = { git = "https://github.com/airalab/substrate" } | ||
sc-offchain = { git = "https://github.com/airalab/substrate" } | ||
sc-consensus-babe = { git = "https://github.com/airalab/substrate" } | ||
sc-finality-grandpa = { git = "https://github.com/airalab/substrate" } | ||
sc-basic-authorship = { git = "https://github.com/airalab/substrate" } | ||
sc-authority-discovery = { git = "https://github.com/airalab/substrate" } | ||
sc-service = { git = "https://github.com/airalab/substrate", default-features = false } | ||
sc-telemetry = { git = "https://github.com/airalab/substrate" } | ||
sc-keystore = { git = "https://github.com/airalab/substrate" } | ||
sc-client = { git = "https://github.com/paritytech/substrate" } | ||
sc-client-db = { git = "https://github.com/paritytech/substrate" } | ||
sc-client-api = { git = "https://github.com/paritytech/substrate" } | ||
sc-chain-spec = { git = "https://github.com/paritytech/substrate" } | ||
sc-transaction-pool = { git = "https://github.com/paritytech/substrate" } | ||
sc-network = { git = "https://github.com/paritytech/substrate" } | ||
sc-offchain = { git = "https://github.com/paritytech/substrate" } | ||
sc-consensus-babe = { git = "https://github.com/paritytech/substrate" } | ||
sc-finality-grandpa = { git = "https://github.com/paritytech/substrate" } | ||
sc-basic-authorship = { git = "https://github.com/paritytech/substrate" } | ||
sc-authority-discovery = { git = "https://github.com/paritytech/substrate" } | ||
sc-service = { git = "https://github.com/paritytech/substrate", default-features = false } | ||
sc-telemetry = { git = "https://github.com/paritytech/substrate" } | ||
sc-keystore = { git = "https://github.com/paritytech/substrate" } | ||
|
||
# frame dependencies | ||
pallet-im-online = { git = "https://github.com/airalab/substrate" } | ||
frame-system-rpc-runtime-api = { git = "https://github.com/airalab/substrate" } | ||
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/airalab/substrate" } | ||
pallet-im-online = { git = "https://github.com/paritytech/substrate" } | ||
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate" } | ||
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate" } | ||
|
||
# node-specific dependencies | ||
robonomics-runtime = { path = "../robonomics-runtime" } | ||
ipci-runtime = { path = "../ipci-runtime" } | ||
sc-executor = { git = "https://github.com/airalab/substrate" } | ||
sc-rpc = { git = "https://github.com/airalab/substrate" } | ||
sc-executor = { git = "https://github.com/paritytech/substrate" } | ||
sc-rpc = { git = "https://github.com/paritytech/substrate" } | ||
|
||
# CLI-specific dependencies | ||
sc-cli = { git = "https://github.com/airalab/substrate", optional = true } | ||
sc-cli = { git = "https://github.com/paritytech/substrate", optional = true } | ||
|
||
# Browser bundle build support | ||
wasm-bindgen = { version = "0.2.57", optional = true } | ||
wasm-bindgen-futures = { version = "0.4.7", optional = true } | ||
browser-utils = { git = "https://github.com/airalab/substrate", optional = true } | ||
browser-utils = { git = "https://github.com/paritytech/substrate", optional = true } | ||
|
||
# Robonomics-specific dependencies | ||
rosrust = { version = "0.9.2", optional = true } | ||
substrate-ros-api = { path = "../../../substrate-ros/api", optional = true } | ||
robonomics-ros-api = { path = "../../../robonomics/ros-api", optional = true } | ||
|
||
[build-dependencies] | ||
sc-cli = { git = "https://github.com/airalab/substrate", optional = true } | ||
substrate-build-script-utils = { git = "https://github.com/airalab/substrate" } | ||
sc-cli = { git = "https://github.com/paritytech/substrate", optional = true } | ||
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate" } | ||
vergen = { version = "3.0.4", optional = true } | ||
structopt = { version = "0.3.8", optional = true } | ||
|
||
|
@@ -125,17 +126,3 @@ ros = [ | |
"substrate-ros-api", | ||
"robonomics-ros-api", | ||
] | ||
|
||
## Build native runtime for Robonomics Testnet. (default) | ||
robonomics = [ | ||
"robonomics-ros-api/liability", | ||
"robonomics-ros-api/blockchain", | ||
] | ||
|
||
## Build native runtime for IPCI blockchain. | ||
# DAO "Integral Platform for Climate Initiatives" is opensource project that build | ||
# public programmable blockchain ecosystem for carbon markets, societal cost mitigation instruments, | ||
# environmental assets, rights and liabilities. https://ipci.io | ||
ipci = [ | ||
"robonomics-ros-api/blockchain", | ||
] |
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.